Initial commit, including all apps previously in course

This commit is contained in:
Jordi Sola
2019-10-04 13:04:03 +02:00
parent a87e659954
commit f7cd8963ef
58 changed files with 2529 additions and 0 deletions

8
todoapp/html5/compile.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
DOCROOT=/opt/rh/httpd24/root/var/www/html/
sudo rm -rf $DOCROOT/todo
sudo cp -r src/ $DOCROOT/todo
sudo chmod -R a+rX $DOCROOT/todo