mirror of
https://github.com/fergalmoran/my_kubes.git
synced 2026-02-16 07:18:31 +00:00
9 lines
231 B
Bash
Executable File
9 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
export SECRET_KEY_BASE=`rake secret`
|
|
bundle exec rake db:migrate
|
|
bundle exec rails c < db/add_first_agent.rb
|
|
bundle exec unicorn -c $UNICORN_CONFIG -E $RAILS_ENV -D
|
|
tail -f $RAILS_LOG
|
|
#tail -f $UNICORN_ERROR_LOG
|