9 lines
102 B
Bash
Executable File
9 lines
102 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
rm -f log/*
|
|
bundle install
|
|
bundle exec rake db:setup --trace
|
|
touch tmp/restart.txt
|