Finished initial version of the client-side UI.

Also moved to an automated build using make.
This commit is contained in:
Jonathan Bernard
2013-10-25 20:36:06 -05:00
parent fd0e937eeb
commit 3b0632a151
8 changed files with 787 additions and 187 deletions

14
Makefile Normal file
View 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'