A last.fm clone written in Elixir
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/env bash
-
- mix local.hex --force
- mix local.rebar --force
-
- mix deps.get --only prod
- MIX_ENV=prod mix compile
-
- npm install --prefix ./assets
- npm run deploy --prefix ./assets
- mix phx.digest
-
- # rm -rf "_build"
- MIX_ENV=prod mix release
|