chore: set development environment
This commit is contained in:
parent
8c671f03e7
commit
4cf6b96328
3 changed files with 21 additions and 0 deletions
|
@ -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
10
dev/dependecy.sh
Normal 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
7
dev/sass.sh
Executable 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/
|
Loading…
Reference in a new issue