mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
Removed templates and use env variables directly
This commit is contained in:
parent
a855bbea4a
commit
56dcbbb6ff
@ -11,6 +11,7 @@ COPY . /commons
|
||||
WORKDIR /commons
|
||||
|
||||
RUN npm install -g serve
|
||||
RUN npm install
|
||||
RUN bash scripts/install.sh
|
||||
RUN bash scripts/build.sh
|
||||
|
||||
|
@ -15,33 +15,11 @@ WORKDIR /app/frontend
|
||||
|
||||
RUN npm install -g npm serve
|
||||
RUN npm install
|
||||
RUN npm run build
|
||||
|
||||
# Default ENV values
|
||||
# src/config/config.ts
|
||||
ENV SERVICE_SCHEME='http'
|
||||
ENV SERVICE_HOST='localhost'
|
||||
ENV SERVICE_PORT='4000'
|
||||
ENV NODE_SCHEME='http'
|
||||
ENV NODE_HOST='localhost'
|
||||
ENV NODE_PORT='8545'
|
||||
ENV AQUARIUS_SCHEME='http'
|
||||
ENV AQUARIUS_HOST='localhost'
|
||||
ENV AQUARIUS_PORT='5000'
|
||||
ENV BRIZO_SCHEME='http'
|
||||
ENV BRIZO_HOST='localhost'
|
||||
ENV BRIZO_PORT='8030'
|
||||
ENV BRIZO_ADDRESS='0x00bd138abd70e2f00903268f3db08f2d25677c9e'
|
||||
ENV PARITY_SCHEME='http'
|
||||
ENV PARITY_HOST='localhost'
|
||||
ENV PARITY_PORT='8545'
|
||||
ENV SECRET_STORE_SCHEME='http'
|
||||
ENV SECRET_STORE_HOST='localhost'
|
||||
ENV SECRET_STORE_PORT='12001'
|
||||
ENV FAUCET_SCHEME='http'
|
||||
ENV FAUCET_HOST='localhost'
|
||||
ENV FAUCET_PORT='3001'
|
||||
|
||||
ENV LISTEN_ADDRESS='0.0.0.0'
|
||||
ENV LISTEN_PORT='3000'
|
||||
|
||||
ENTRYPOINT ["/app/frontend/scripts/docker-entrypoint.sh"]
|
||||
|
||||
|
@ -1,31 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
SERVICE_SCHEME=${SERVICE_SCHEME:-http}
|
||||
SERVICE_HOST=${SERVICE_HOST:-localhost}
|
||||
SERVICE_PORT=${SERVICE_PORT:-8545}
|
||||
|
||||
NODE_SCHEME=${NODE_SCHEME:-http}
|
||||
NODE_HOST=${NODE_HOST:-localhost}
|
||||
NODE_PORT=${NODE_PORT:-8545}
|
||||
AQUARIUS_SCHEME=${AQUARIUS_SCHEME:-http}
|
||||
AQUARIUS_HOST=${AQUARIUS_HOST:-localhost}
|
||||
AQUARIUS_PORT=${AQUARIUS_PORT:-5000}
|
||||
BRIZO_SCHEME=${BRIZO_SCHEME:-http}
|
||||
BRIZO_HOST=${BRIZO_HOST:-localhost}
|
||||
BRIZO_PORT=${BRIZO_PORT:-8030}
|
||||
BRIZO_PASSWORD=${BRIZO_PASSWORD:-0x00bd138abd70e2f00903268f3db08f2d25677c9e}
|
||||
PARITY_SCHEME=${PARITY_SCHEME:-http}
|
||||
PARITY_HOST=${PARITY_HOST:-localhost}
|
||||
PARITY_PORT=${PARITY_PORT:-8545}
|
||||
SECRET_STORE_SCHEME=${SECRET_STORE_SCHEME:-http}
|
||||
SECRET_STORE_HOST=${SECRET_STORE_HOST:-localhost}
|
||||
SECRET_STORE_PORT=${SECRET_STORE_PORT:-12001}
|
||||
|
||||
FAUCET_SCHEME=${FAUCET_SCHEME:-http}
|
||||
FAUCET_HOST=${FAUCET_HOST:-localhost}
|
||||
FAUCET_PORT=${FAUCET_PORT:-443}
|
||||
|
||||
envsubst < /app/frontend/src/config/config.ts.template > /app/frontend/src/config/config.ts
|
||||
if [ "${LOCAL_CONTRACTS}" = "true" ]; then
|
||||
echo "Waiting for contracts to be generated..."
|
||||
while [ ! -f "/app/frontend/node_modules/@oceanprotocol/keeper-contracts/artifacts/ready" ]; do
|
||||
@ -33,5 +7,4 @@ if [ "${LOCAL_CONTRACTS}" = "true" ]; then
|
||||
done
|
||||
fi
|
||||
echo "Starting Commons..."
|
||||
npm run build
|
||||
serve -l tcp://"${LISTEN_ADDRESS}":"${LISTEN_PORT}" -s /app/frontend/build/
|
||||
|
@ -1,36 +0,0 @@
|
||||
//
|
||||
// commons-server connection
|
||||
//
|
||||
export const serviceScheme = '${SERVICE_SCHEME}'
|
||||
export const serviceHost = '${SERVICE_HOST}'
|
||||
export const servicePort = '${SERVICE_PORT}'
|
||||
|
||||
//
|
||||
// OCEAN REMOTE CONNECTIONS
|
||||
//
|
||||
export const nodeScheme = '${NODE_SCHEME}'
|
||||
export const nodeHost = '${NODE_HOST}'
|
||||
export const nodePort = '${NODE_PORT}'
|
||||
|
||||
export const aquariusScheme = '${AQUARIUS_SCHEME}'
|
||||
export const aquariusHost = '${AQUARIUS_HOST}'
|
||||
export const aquariusPort = '${AQUARIUS_PORT}'
|
||||
|
||||
export const brizoScheme = '${BRIZO_SCHEME}'
|
||||
export const brizoHost = '${BRIZO_HOST}'
|
||||
export const brizoPort = '${BRIZO_ADDRESS}'
|
||||
export const brizoAddress = '${BRIZO_ADDRESS}'
|
||||
|
||||
export const parityScheme = '${PARITY_SCHEME}'
|
||||
export const parityHost = '${PARITY_HOST}'
|
||||
export const parityPort = '${PARITY_PORT}'
|
||||
|
||||
export const secretStoreScheme = '${SECRET_STORE_SCHEME}'
|
||||
export const secretStoreHost = '${SECRET_STORE_HOST}'
|
||||
export const secretStorePort = '${SECRET_STORE_PORT}'
|
||||
|
||||
export const faucetScheme = '${FAUCET_SCHEME}'
|
||||
export const faucetHost = '${FAUCET_HOST}'
|
||||
export const faucetPort = '${FAUCET_PORT}'
|
||||
|
||||
export const verbose = true
|
@ -8,3 +8,6 @@ COPY . .
|
||||
RUN npm install
|
||||
|
||||
RUN npm run build
|
||||
|
||||
ENTRYPOINT ["npm", "run", "start"]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user