website/README.md

22 lines
660 B
Markdown
Raw Normal View History

# website | MatterLinux Website
Soruce code of Matterlinux's offical website, which is
located at [matterlinux.xyz](https://matterlinux.xyz)
2023-12-09 16:25:38 +00:00
2023-12-09 16:29:07 +00:00
### Deployment
Web server can be built and deployed with docker:
2023-12-09 16:25:38 +00:00
```
docker build --tag matterwebsite .
docker run -d --name matterweb \
-p 127.0.0.1:9878:9878 \
2023-12-09 16:31:51 +00:00
-v $PWD/content:/app/content \
2023-12-09 16:25:38 +00:00
matterwebsite
```
### Managing Content
Website content can be managed by editing JSON and markdown files
under the `content` direcotry.
2024-01-07 18:20:31 +00:00
Matterlinux's website content directory can be found in the
[content](https://git.matterlinux.xyz/Matter/content)
repository.