-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstartup.sh
41 lines (32 loc) · 1.42 KB
/
startup.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
#!/bin/sh
# Run Migrations
echo <<EOF
╭━━━╮╭╮╱╱╱╱╱╭╮╱╱╱╱╱╱╱╭━━━╮╭╮╱╱╱╱╱╱╭╮
┃╭━╮┣╯╰╮╱╱╱╭╯╰╮╱╱╱╱╱╱┃╭━╮┣╯╰╮╱╱╱╱╱┃┃
┃╰━━╋╮╭╋━━┳┻╮╭╋╮╭┳━━╮┃╰━━╋╮╭╋━━┳━━┫┃╭╮
╰━━╮┃┃┃┃╭╮┃╭┫┃┃┃┃┃╭╮┃╰━━╮┃┃┃┃╭╮┃╭━┫╰╯╯
┃╰━╯┃┃╰┫╭╮┃┃┃╰┫╰╯┃╰╯┃┃╰━╯┃┃╰┫╭╮┃╰━┫╭╮╮
╰━━━╯╰━┻╯╰┻╯╰━┻━━┫╭━╯╰━━━╯╰━┻╯╰┻━━┻╯╰╯
╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱┃┃
╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╰╯
EOF
echo "Startup stack starting..."
echo -e "\e[1mCommit:\e[0m ${COMMIT}"
if [ -n "$RAILS_ENV" ]
then
echo "RAILS_ENV is $RAILS_ENV"
else
echo 'RAILS_ENV not set, default to production'
export RAILS_ENV='production'
fi
if [ -n "$SKIP_MIGRATIONS" ]
then
echo "SKIP_MIGRATIONS is set. Skipping Migrations."
else
bundle exec rake db:migrate
fi
echo "Starting SSH Server"
/usr/sbin/sshd -o "SetEnv=RAILS_ENV=\"$RAILS_ENV\" DATABASE_URL=\"$DATABASE_URL\" GEM_HOME=\"$GEM_HOME\" SECRET_KEY_BASE=stubbed"
echo "## Migrations complete. Starting app."
# Start App
bundle exec rails server -b 0.0.0.0