diff --git a/core/config/dev.exs b/core/config/dev.exs index f7d40bde2..e4c4bc90b 100644 --- a/core/config/dev.exs +++ b/core/config/dev.exs @@ -79,7 +79,7 @@ config :core, :apns_backend, Core.APNS.LoggingBackend config :core, :admins, - ["e.vanderveen@eyra.co"] + ["e.vanderveen@eyra.co", "m.j.kokernoot@eyra.co"] # # For Minio (local S3) # config :ex_aws, diff --git a/setup b/setup index b6227136e..4f6d40df2 100755 --- a/setup +++ b/setup @@ -1,20 +1,2 @@ -#!/bin/sh -e - -asdf plugin-add erlang || true -asdf plugin-add elixir || true -asdf plugin-add nodejs || true - -bash -c '${ASDF_DATA_DIR:=$HOME/.asdf}/plugins/nodejs/bin/import-release-team-keyring' -bash -c '${ASDF_DATA_DIR:=$HOME/.asdf}/plugins/nodejs/bin/import-previous-release-team-keyring' - -asdf install - -cd assets -asdf exec npm install -cd .. - -asdf exec mix deps.get - -pre-commit install - -echo "All done. Reload your shell to enable the new commands." +#!/bin/bash +source ./setup.sh \ No newline at end of file diff --git a/setup.sh b/setup.sh index b6227136e..a1babf06f 100644 --- a/setup.sh +++ b/setup.sh @@ -4,12 +4,9 @@ asdf plugin-add erlang || true asdf plugin-add elixir || true asdf plugin-add nodejs || true -bash -c '${ASDF_DATA_DIR:=$HOME/.asdf}/plugins/nodejs/bin/import-release-team-keyring' -bash -c '${ASDF_DATA_DIR:=$HOME/.asdf}/plugins/nodejs/bin/import-previous-release-team-keyring' - asdf install -cd assets +cd ./core/assets asdf exec npm install cd ..