mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-07-29 10:33:13 +00:00
27 lines
319 B
Bash
Executable File
27 lines
319 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd /opt/app || exit 1
|
|
|
|
export HOME=/home/ec2-user
|
|
export MIX_ENV=prod
|
|
|
|
source /etc/environment
|
|
|
|
mix local.rebar --force
|
|
mix local.hex --force
|
|
|
|
mix deps.get
|
|
|
|
mix compile
|
|
|
|
# Install node dependencies
|
|
pushd apps/explorer || exit 1
|
|
npm install
|
|
popd
|
|
|
|
chown -R ec2-user:ec2-user /opt/app
|
|
|
|
exit 0
|