mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-14 20:48:25 +00:00
11 lines
157 B
Bash
11 lines
157 B
Bash
#!/bin/bash
|
|
set -e
|
|
bundle check || bundle install
|
|
rake db:create
|
|
rake db:migrate
|
|
|
|
if [ -e tmp/pids/server.pid ]; then
|
|
rm tmp/pids/server.pid
|
|
fi
|
|
|
|
exec "$@"
|