1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-03-13 12:04:57 -04:00

Add render build script

This commit is contained in:
edgurgel 2024-06-26 21:41:50 +12:00
parent 4f87d8262a
commit e716a1a327

10
build.sh Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
# exit on error
set -o errexit
# Initial setup
mix deps.get --only prod
MIX_ENV=prod mix compile
# Build the release and overwrite the existing release directory
MIX_ENV=prod mix release --overwrite