chore: set development environment

This commit is contained in:
Aliberk Sandıkçı 2023-05-11 14:47:18 +03:00
parent 8c671f03e7
commit 4cf6b96328
3 changed files with 21 additions and 0 deletions

View File

@ -3,4 +3,8 @@ deployment:
tasks:
- export DEPLOYPATH= ~/public_html/
- /bin/cp index.html $DEPLOYPATH
- /bin/cp links.html $DEPLOYPATH
- /bin/cp about.html $DEPLOYPATH
- /bin/cp -R assets $DEPLOYPATH

10
dev/dependecy.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
### INSTALL SASS Compiler ###
# https://sass-lang.com/install
# https://github.com/sass/dart-sass/releases
# https://sass-lang.com/documentation/cli/dart-sass
# Arch based distros:
sudo pacman -S sass

7
dev/sass.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
# Compile all scss files
sass ../assets/scss/:../assets/css/
# watch for scss file changes and compile them
sass --watch ../assets/scss/:../assets/css/