Compare commits

...

2 commits

Author SHA1 Message Date
Vri
8fa0fb6ca4
add README 2022-11-24 11:26:53 +01:00
Vri
7a2558f86b
add gitignore 2022-11-24 11:26:36 +01:00
2 changed files with 16 additions and 0 deletions

7
.gitignore vendored Normal file
View file

@ -0,0 +1,7 @@
# generated directories
/public/*
/resources/_gen/*
# ignored files
.directory
.hugo_build.lock

9
README.md Normal file
View file

@ -0,0 +1,9 @@
Website of Cozy Town written in HTML and SCSS using hugo.
# Deploy
``` bash
hugo && \
rsync -avz --delete public/ vri@cozy.town:/home/vrifox/upload/town.cozy/ && \
ssh vri@cozy.town "sudo /home/vrifox/deploy-cozy.town.sh"
```