Finished initial version of the client-side UI.
Also moved to an automated build using make.
This commit is contained in:
14
Makefile
Normal file
14
Makefile
Normal file
@ -0,0 +1,14 @@
|
||||
build :
|
||||
mkdir -p build/css
|
||||
cp src/www/*.* build
|
||||
cp -r src/www/js build
|
||||
# cp -r resources/* build/.
|
||||
sass src/www/css/nursery-schedule.scss build/css/nursery-schedule.css
|
||||
sass src/www/css/schedule-maker.scss build/css/schedule-maker.css
|
||||
|
||||
clean :
|
||||
-rm -r build
|
||||
|
||||
local-deploy: build
|
||||
cp -r build ~/temp/server
|
||||
ssh jdb-server 'rm -r ~/public_html/nursery-schedule; mv temp/build ~/public_html/nursery-schedule'
|
Reference in New Issue
Block a user