mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-04-05 05:06:18 +00:00
13 lines
319 B
Bash
Executable File
13 lines
319 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
od=$(pwd)
|
|
mix local.hex --force && mix local.rebar --force
|
|
mix do deps.get, deps.compile
|
|
cd apps/fg_http/assets && npm ci --progress=false --no-audit --loglevel=error
|
|
cd $od
|
|
npm run --prefix apps/fg_http/assets deploy
|
|
cd apps/fg_http
|
|
mix phx.digest
|
|
cd $od
|
|
mix release --overwrite --force fireguard
|