Managing loaner chromebooks for students and teachers in the HUUSD school district.
at main 8 lines 191 B view raw
1#!/bin/bash -e 2 3# If running the rails server then create or migrate existing database 4if [ "${1}" == "./bin/rails" ] && [ "${2}" == "server" ]; then 5 ./bin/rails db:prepare 6fi 7 8exec "${@}"