mirror of
https://github.com/cliffe/BreakEscape.git
synced 2026-02-20 13:50:46 +00:00
6 lines
134 B
Bash
Executable File
6 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
# kill any puma processes
|
|
pkill -9 -f puma; sleep 1
|
|
# start the server
|
|
bundle exec rails server -b 0.0.0.0 -p 3000 2>&1 &
|