mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 23:30:12 +01:00
8 lines
170 B
Text
8 lines
170 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
appdir=$(cd $(dirname "$0")/.. && pwd)
|
||
|
|
[ -f /etc/app-env ] || exec "$appdir/script/docker-environment" $0 $@
|
||
|
|
|
||
|
|
export RAILS_ENV='development'
|
||
|
|
bin/rails console
|