Files
homepage/make_release.sh

13 lines
268 B
Bash
Raw Permalink Normal View History

2023-11-07 08:52:09 +01:00
#!/bin/sh
set -e
export SECRET_KEY_BASE=$(mix phx.gen.secret)
export DATABASE_URL=ecto://postgres:postgres@localhost/homepage_dev
mix deps.get --only prod
MIX_ENV=prod mix assets.deploy
MIX_ENV=prod mix compile
2024-05-26 17:34:34 +02:00
mix phx.gen.release --docker
2023-11-07 08:52:09 +01:00
MIX_ENV=prod mix release