Add go.sh

This commit is contained in:
James Harton 2018-04-10 12:37:23 +12:00
parent b5cb92ef1d
commit 53b66bed63

15
go.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/sh
mix deps.get
mix ecto.drop
mix ecto.create
mix ecto.migrate
mix run priv/repo/seeds.exs
mix phx.server
open http://localhost:4000
read -p "Press enter to continue to next step"
git checkout step-3
exec ./go.sh