mirror of
https://github.com/edgurgel/httparrot
synced 2025-03-13 12:04:57 -04:00
10 lines
221 B
Bash
Executable file
10 lines
221 B
Bash
Executable file
#!/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
|