Files
codeocean/docs/debian_installer/setup_debian_7_create_tables.sh
2020-10-20 12:13:30 +02:00

8 lines
180 B
Bash

# create, migrate, and seed database tables
cd /home/debian/codeocean_host
export RAILS_ENV=development
echo "load, seed, migrate"
rake db:schema:load
rake db:seed
rake db:migrate