diff options
Diffstat (limited to 'nitrous-post-create.sh')
-rwxr-xr-x | nitrous-post-create.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/nitrous-post-create.sh b/nitrous-post-create.sh new file mode 100755 index 00000000..558cc753 --- /dev/null +++ b/nitrous-post-create.sh @@ -0,0 +1,14 @@ +#!/bin/bash +rm -rf ~/code/public_html + +sudo apt-get update +sudo apt-get install -y php5-sqlite +sudo apt-get clean + +cd ~/code +mv kanboard public_html +cd public_html +composer install +cd ~/code +sudo chown -R nitrous:www-data public_html +sudo service apache2 reload |