8 lines
143 B
Bash
8 lines
143 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
mkdir -p db
|
|
|
|
# Puma will run app.rb which auto-migrates the database
|
|
exec bundle exec puma config.ru -b tcp://0.0.0.0:4567
|