forked from dereuromark/cakephp-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
36 lines (26 loc) · 823 Bytes
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
# Warning: This is NOT a productive script, but for local dev envs only!
echo "### INSTALL/UPDATE ###";
[ ! -f composer.phar ] && curl -sS https://getcomposer.org/installer | php
php composer.phar selfupdate
git pull
php composer.phar install --prefer-dist --no-dev --optimize-autoloader --no-interaction
chmod +x bin/cake
mkdir -p ./tmp
mkdir -p ./logs
mkdir -p ./webroot/js/cjs/
mkdir -p ./webroot/css/ccss/
echo "### DB MIGRATION ###";
bin/cake Migrations migrate
echo "### ASSETS ###";
bower install --allow-root
bin/cake AssetCompress.AssetCompress build
echo "### CLEANUP ###";
rm -rf ./tmp/cache/models/*
rm -rf ./tmp/cache/persistent/*
chown -R www-data:www-data *
chmod -R 0770 ./tmp
chmod -R 0770 ./logs
chmod -R 0770 ./webroot/js/cjs/
chmod -R 0770 ./webroot/css/ccss/
echo "### DONE ###";