10 lines
198 B
Bash
10 lines
198 B
Bash
#!/bin/bash
|
|
|
|
# Run the migrations to make sure the DB is up-to-date
|
|
echo 'Checking database status...'
|
|
rake db:migrate
|
|
|
|
# Start the HTTP server
|
|
echo 'Starting development server...'
|
|
rake server:dev
|