website/README.md

22 lines
708 B
Markdown

# website | Matterlinux Website
Soruce code of Matterlinux's offical website, which is
hosted at [matterlinux.xyz](https://matterlinux.xyz)
### Deployment
After cloning this repository, web server can be built and deployed with docker:
```
docker build --tag matterwebsite .
docker run -d --name matterweb \
-p 127.0.0.1:9878:9878 \
-v $PWD/content:/app/content \
matterwebsite
```
### Managing Content
Website content can be managed by editing JSON and markdown files
under the `content` direcotry.
Matterlinux's website content directory can be found at
[website-content](https://git.matterlinux.xyz/matterlinux/website-content)
repository.