Web Client #11

Merged
Simponic merged 19 commits from web into main 2023-01-19 16:04:10 -05:00
Showing only changes of commit 03c71dd00f - Show all commits

11
build.sh Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
# Initial setup
mix deps.get --only prod
MIX_ENV=prod mix compile
# Remove the existing release directory and build the release
rm -rf "_build"
MIX_ENV=prod mix release
# for auto DB migration upon deploy
MIX_ENV=prod mix ecto.migrate