Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed confusing env vars #25

Merged
merged 1 commit into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions evidence-display/.env.example

This file was deleted.

11 changes: 1 addition & 10 deletions evidence-display/scripts/deploy.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env bash
#!/usr/bin/env bash
function usage {
echo "./$(basename $0) [-v] [-s]"
echo ""
Expand Down Expand Up @@ -50,15 +50,6 @@ build-app() {
if [ $SKIP_BUILD -eq 0 ]; then
if [ $VERBOSE -eq 1 ]; then
echo 'Building the app...'

[ -f .env ] && source .env
echo ""
echo -e "Using current env vars:\n"
echo -e "\tREACT_APP_FOREIGN_CHAIN_RPC_ENDPOINT:" ${REACT_APP_FOREIGN_CHAIN_RPC_ENDPOINT}
echo -e "\tREACT_APP_HOME_CHAIN_RPC_ENDPOINT:" ${REACT_APP_HOME_CHAIN_RPC_ENDPOINT}
echo -e "\tREACT_APP_REALITY_ETH_URL_TEMPLATE:" ${REACT_APP_REALITY_ETH_URL_TEMPLATE}
echo ""

fi

[ $VERBOSE -eq 1 ] && YARN_OPTS='' || YARN_OPTS='-s'
Expand Down
Loading