kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
4 years ago
|
#!/bin/bash
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
|
||
|
pushd "${APP_PATH}/frontend"
|
||
|
|
||
|
export NG_CLI_ANALYTICS=ci # so angular cli doesn't block waiting for user input
|
||
|
|
||
|
# Installing frontend dependencies
|
||
|
RAILS_ENV=production npm install
|
||
|
|
||
|
popd
|
||
|
|
||
|
# Bundle assets
|
||
|
su - postgres -c "$PGBIN/initdb -D /tmp/nulldb"
|
||
|
su - postgres -c "$PGBIN/pg_ctl -D /tmp/nulldb -l /dev/null -w start"
|
||
|
echo "create database assets; create user assets with encrypted password 'p4ssw0rd'; grant all privileges on database assets to assets;" | su - postgres -c psql
|
||
|
|
||
|
# give some more time for DB to start
|
||
|
sleep 2
|
||
|
|
||
|
# dump schema
|
||
|
DATABASE_URL=postgres://assets:p4ssw0rd@127.0.0.1/assets RAILS_ENV=production bundle exec rake db:migrate db:schema:dump db:schema:cache:dump
|
||
|
|
||
|
# precompile assets
|
||
|
DATABASE_URL=postgres://assets:p4ssw0rd@127.0.0.1/assets RAILS_ENV=production bundle exec rake assets:precompile
|
||
|
|
||
|
su - postgres -c "$PGBIN/pg_ctl -D /tmp/nulldb stop"
|
||
|
|
||
|
rm -rf /tmp/nulldb
|
||
|
|
||
|
# Remove sprockets cache
|
||
|
rm -rf "$APP_PATH/tmp/cache/assets"
|
||
|
|
||
|
# Remove node_modules and entire frontend
|
||
|
rm -rf "$APP_PATH/node_modules/" "$APP_PATH/frontend/node_modules/"
|
||
|
|
||
|
# Clean cache in root
|
||
|
rm -rf /root/.npm
|
||
|
|