philomena/docker/app/run-development

29 lines
596 B
Text
Raw Normal View History

2019-12-03 19:36:50 +01:00
#!/bin/bash
# Always install assets
2020-02-11 04:27:09 +01:00
(
cd /srv/philomena/assets
# workaround for #31
npm install || (chown -R root:root node_modules && npm install)
)
2019-12-03 19:36:50 +01:00
# Always install mix dependencies
(cd /srv/philomena && mix deps.get)
# Sleep to allow Elasticsearch to finish initializing
# if it's not done doing whatever it does yet
echo -n "Waiting for Elasticsearch"
2019-12-03 23:56:26 +01:00
until wget -qO - elasticsearch:9200; do
2019-12-03 19:36:50 +01:00
echo -n "."
sleep 2
done
echo
# Try to create the database if it doesn't exist yet
2019-12-03 23:56:26 +01:00
createdb -h postgres -U postgres philomena_dev && mix ecto.setup_dev
2019-12-03 19:36:50 +01:00
# Run the application
2020-02-11 04:27:09 +01:00
mix phx.server