first commit

This commit is contained in:
ngn
2023-12-09 19:25:38 +03:00
commit 30574d4aa2
19 changed files with 886 additions and 0 deletions

13
README.md Normal file
View File

@ -0,0 +1,13 @@
# website | Matterlinux Website
Soruce code of Matterlinux's offical website, which is
hosted at [matterlinux.xzy](https://matterlinux.xyz)
## Deployment
Website 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/web-content:/app/content \
matterwebsite
```