16 lines
284 B
Bash
Executable File
16 lines
284 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
bin/rails runner - <<EOF
|
|
puts "Login with david@example.com to: http://fizzy.localhost:3006/"
|
|
EOF
|
|
|
|
if [ -f tmp/solid-queue.txt ]; then
|
|
export SOLID_QUEUE_IN_PUMA=1
|
|
fi
|
|
|
|
if [ -f tmp/oss-config.txt ]; then
|
|
export OSS_CONFIG=1
|
|
fi
|
|
|
|
exec ./bin/rails server -p 3006
|