forked from dereuromark/cakephp-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
50 lines (34 loc) · 1.07 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/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
bin/cake maintenance_mode activate
bin/cake queue end all
mkdir -p tmp
mkdir -p logs
mkdir -p webroot/js/cjs/
mkdir -p webroot/css/ccss/
echo "### DB MIGRATION ###";
php composer.phar migrate
echo "### ASSETS ###";
bower install --allow-root
mkdir -p webroot/css/fonts
cp -R webroot/assets/bootstrap/dist/fonts/* webroot/css/fonts/
cp -R webroot/assets/font-awesome/fonts/* webroot/css/fonts/
bin/cake asset_compress build
echo "### CLEANUP ###";
rm -rf tmp/cache/models/*
rm -rf tmp/cache/persistent/*
rm -rf tmp/cache/views/*
bin/cake schema_cache build
bin/cake maintenance_mode deactivate
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 ###";