mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
24 lines
403 B
Bash
Executable file
24 lines
403 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export MIX_ENV=test
|
|
|
|
# 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"
|
|
|
|
until wget -qO - elasticsearch:9200; do
|
|
echo -n "."
|
|
sleep 2
|
|
done
|
|
|
|
echo
|
|
|
|
# Create the database
|
|
mix ecto.create
|
|
mix ecto.load
|
|
|
|
# Test the application
|
|
mix test
|