From d4c7fd3d7ed4a8def5934269d9176c163f3c3193 Mon Sep 17 00:00:00 2001 From: Blair Vanderlugt Date: Thu, 9 Dec 2021 09:20:03 +0000 Subject: [PATCH 1/2] documentation: updated the docs with new links and getting started --- README.md | 34 ++++++------------------------- apps/contract-migration/README.md | 13 +++++++----- docker-compose.yml | 2 +- 3 files changed, 15 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index a7966dc9..bc5ffdea 100644 --- a/README.md +++ b/README.md @@ -1,41 +1,19 @@ -# cic-internal-integration +# Community Inclusion Currency Stack (CIC Stack) + +A custodial evm wallet for executing transactions via USSD ## Getting started This repo uses docker-compose and docker buildkit. Set the following environment variables to get started: - ``` export COMPOSE_DOCKER_CLI_BUILD=1 export DOCKER_BUILDKIT=1 ``` -start services, database, redis and local ethereum node -``` -docker-compose up -d -``` +To get started see [./apps/contract-migration/README.md](./apps/contract-migration/README.md) -Run app/contract-migration to deploy contracts -``` -RUN_MASK=3 docker-compose up contract-migration -``` +## Documentation -stop cluster -``` -docker-compose down -``` +[https://docs.grassecon.org/cic_stack/](https://docs.grassecon.org/cic_stack/) -stop cluster and delete data -``` -docker-compose down -v --remove-orphans -``` - -rebuild an images -``` -docker-compose up --build -``` - -to delete the buildkit cache -``` -docker builder prune --filter type=exec.cachemount -``` diff --git a/apps/contract-migration/README.md b/apps/contract-migration/README.md index e3e72d6a..fd3a523f 100644 --- a/apps/contract-migration/README.md +++ b/apps/contract-migration/README.md @@ -27,6 +27,7 @@ In the current version of the scripts, two token types may be deployed; [`giftab This step may be run multiple times, as long as the token symbol is different from all previously deployed tokens. + ## 4. Initialize custodial engine. Adds system accounts to the custodial engine, and unlocks the initialization seal. After this step, the custodial system is ready to use. @@ -35,10 +36,12 @@ Adds system accounts to the custodial engine, and unlocks the initialization sea ## Services dependency graph 1. evm -2. bootstrap runlevel 1 -3. bootstrap runlevel 2 -4. bootstrap runlevel 3 +2. bootstrap runlevel 1 - deploy global contracts (RUN_MASK=1 docker-compose up bootstrap) +3. bootstrap runlevel 2 - deploy instance contracts (RUN_MASK=2 docker-compose up bootstrap) +4. bootstrap runlevel 4 - deploy token (RUN_MASK=4 docker-compose up bootstrap) 5. redis 6. postgres -7. cic-eth-tasker -8. boostrap runlevel 4 +7. cic-eth-tasker +8. boostrap runlevel 8 - deploy custodial contracts (RUN_MASK=8 docker-compose up bootstrap) +9. boostrap runlevel 16 - data seeding for development (RUN_MASK=16 docker-compose up bootstrap) +10. bring up the remainig services (docker-compose up -d) diff --git a/docker-compose.yml b/docker-compose.yml index a310b6d0..c2b610d1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -67,7 +67,7 @@ services: RUN_MASK: ${RUN_MASK:-0} TOKEN_NAME: $TOKEN_NAME TOKEN_SYMBOL: $TOKEN_SYMBOL - TOKEN_TYPE: $TOKEN_TYPE + TOKEN_TYPE: ${TOKEN_TYPE:-giftable_erc20_token} TOKEN_DECIMALS: $TOKEN_DECIMALS TOKEN_REDISTRIBUTION_PERIOD: $TOKEN_REDISTRIBUTION_PERIOD TOKEN_SUPPLY_LIMIT: $TOKEN_SUPPLY_LIMIT From efb1967f4672940c1df8a4058ed545b735f08102 Mon Sep 17 00:00:00 2001 From: Mohamed Sohail Date: Fri, 10 Dec 2021 14:55:50 +0000 Subject: [PATCH 2/2] fix: update default pip to new url --- apps/cic-cache/docker/Dockerfile | 2 +- apps/cic-cache/docker/run_tests.sh | 2 +- apps/cic-eth/docker/Dockerfile | 6 +- apps/cic-eth/docker/run_tests.sh | 2 +- apps/cic-eth/tests/run_tests.sh | 2 +- apps/cic-notify/docker/Dockerfile | 2 +- apps/cic-notify/docker/run_tests.sh | 2 +- apps/cic-signer/Dockerfile | 2 +- apps/cic-ussd/docker/Dockerfile | 4 +- apps/cic-ussd/docker/run_tests.sh | 2 +- apps/contract-migration/docker/Dockerfile | 2 +- apps/data-seeding/README.md | 93 +++++++++-------------- apps/data-seeding/docker/Dockerfile | 6 +- docker-compose.yml | 26 +++---- 14 files changed, 67 insertions(+), 86 deletions(-) diff --git a/apps/cic-cache/docker/Dockerfile b/apps/cic-cache/docker/Dockerfile index dc4bf6db..bc7c0dd0 100644 --- a/apps/cic-cache/docker/Dockerfile +++ b/apps/cic-cache/docker/Dockerfile @@ -4,7 +4,7 @@ FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2 COPY requirements.txt . -ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net:8433" +ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net" ARG EXTRA_PIP_ARGS="" ARG PIP_INDEX_URL="https://pypi.org/simple" diff --git a/apps/cic-cache/docker/run_tests.sh b/apps/cic-cache/docker/run_tests.sh index 62c1db72..6b26aeef 100644 --- a/apps/cic-cache/docker/run_tests.sh +++ b/apps/cic-cache/docker/run_tests.sh @@ -2,7 +2,7 @@ set -e -pip install --extra-index-url https://pip.grassrootseconomics.net:8433 \ +pip install --extra-index-url https://pip.grassrootseconomics.net \ --extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple \ -r test_requirements.txt diff --git a/apps/cic-eth/docker/Dockerfile b/apps/cic-eth/docker/Dockerfile index e04d0541..854f7306 100644 --- a/apps/cic-eth/docker/Dockerfile +++ b/apps/cic-eth/docker/Dockerfile @@ -7,7 +7,7 @@ FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2 # TODO can we take all the requirements out of setup.py and just do a pip install -r requirements.txt && python setup.py #COPY cic-eth/requirements.txt . -ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net:8433 +ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net ARG EXTRA_PIP_ARGS="" ARG PIP_INDEX_URL=https://pypi.org/simple @@ -15,7 +15,7 @@ RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \ pip install --index-url $PIP_INDEX_URL \ --pre \ --extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \ - cic-eth-aux-erc20-demurrage-token~=0.0.2a7 + cic-eth-aux-erc20-demurrage-token~=0.0.2a7 COPY *requirements.txt ./ @@ -26,7 +26,7 @@ RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \ -r requirements.txt \ -r services_requirements.txt \ -r admin_requirements.txt - + COPY . . RUN python setup.py install diff --git a/apps/cic-eth/docker/run_tests.sh b/apps/cic-eth/docker/run_tests.sh index ef434d5c..96f692bd 100644 --- a/apps/cic-eth/docker/run_tests.sh +++ b/apps/cic-eth/docker/run_tests.sh @@ -2,7 +2,7 @@ set -e -pip install --extra-index-url https://pip.grassrootseconomics.net:8433 --extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple \ +pip install --extra-index-url https://pip.grassrootseconomics.net --extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple \ -r admin_requirements.txt \ -r services_requirements.txt \ -r test_requirements.txt diff --git a/apps/cic-eth/tests/run_tests.sh b/apps/cic-eth/tests/run_tests.sh index 30500432..751f42cd 100644 --- a/apps/cic-eth/tests/run_tests.sh +++ b/apps/cic-eth/tests/run_tests.sh @@ -2,7 +2,7 @@ set -e -pip install --extra-index-url https://pip.grassrootseconomics.net:8433 --extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple +pip install --extra-index-url https://pip.grassrootseconomics.net --extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple -r admin_requirements.txt -r services_requirements.txt -r test_requirements.txt diff --git a/apps/cic-notify/docker/Dockerfile b/apps/cic-notify/docker/Dockerfile index b217d798..f348197f 100644 --- a/apps/cic-notify/docker/Dockerfile +++ b/apps/cic-notify/docker/Dockerfile @@ -6,7 +6,7 @@ FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2 RUN apt-get install libffi-dev -y -ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net:8433 +ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net ARG EXTRA_PIP_ARGS="" ARG PIP_INDEX_URL=https://pypi.org/simple diff --git a/apps/cic-notify/docker/run_tests.sh b/apps/cic-notify/docker/run_tests.sh index 1c2e8678..03a066e2 100644 --- a/apps/cic-notify/docker/run_tests.sh +++ b/apps/cic-notify/docker/run_tests.sh @@ -2,7 +2,7 @@ set -e -pip install --extra-index-url https://pip.grassrootseconomics.net:8433 \ +pip install --extra-index-url https://pip.grassrootseconomics.net \ --extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple \ -r test_requirements.txt diff --git a/apps/cic-signer/Dockerfile b/apps/cic-signer/Dockerfile index bbe9d694..34bcabf6 100644 --- a/apps/cic-signer/Dockerfile +++ b/apps/cic-signer/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get install libffi-dev -y COPY requirements.txt . -ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net:8433" +ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net" ARG EXTRA_PIP_ARGS="" ARG PIP_INDEX_URL="https://pypi.org/simple" RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \ diff --git a/apps/cic-ussd/docker/Dockerfile b/apps/cic-ussd/docker/Dockerfile index 2359510a..a7a611b0 100644 --- a/apps/cic-ussd/docker/Dockerfile +++ b/apps/cic-ussd/docker/Dockerfile @@ -10,7 +10,7 @@ RUN mkdir -vp pgp/keys RUN mkdir -vp cic-ussd RUN mkdir -vp data -ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net:8433 +ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net ARG EXTRA_PIP_ARGS="" ARG PIP_INDEX_URL=https://pypi.org/simple @@ -18,7 +18,7 @@ RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \ pip install --index-url $PIP_INDEX_URL \ --pre \ --extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \ - cic-eth-aux-erc20-demurrage-token~=0.0.2a7 + cic-eth-aux-erc20-demurrage-token~=0.0.2a7 COPY *requirements.txt ./ diff --git a/apps/cic-ussd/docker/run_tests.sh b/apps/cic-ussd/docker/run_tests.sh index ab673411..d766ccd0 100644 --- a/apps/cic-ussd/docker/run_tests.sh +++ b/apps/cic-ussd/docker/run_tests.sh @@ -3,7 +3,7 @@ set -e -pip install --extra-index-url https://pip.grassrootseconomics.net:8433 \ +pip install --extra-index-url https://pip.grassrootseconomics.net \ --extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple \ -r test_requirements.txt diff --git a/apps/contract-migration/docker/Dockerfile b/apps/contract-migration/docker/Dockerfile index cbc32124..48f67376 100644 --- a/apps/contract-migration/docker/Dockerfile +++ b/apps/contract-migration/docker/Dockerfile @@ -19,7 +19,7 @@ COPY requirements.txt . #RUN apt-get install libffi-dev ARG pip_index_url=https://pypi.org/simple -ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net:8433" +ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net" ARG EXTRA_PIP_ARGS="" ARG PIP_INDEX_URL="https://pypi.org/simple" ARG pip_trusted_host=pypi.org diff --git a/apps/data-seeding/README.md b/apps/data-seeding/README.md index 959bd4fe..46c17722 100644 --- a/apps/data-seeding/README.md +++ b/apps/data-seeding/README.md @@ -6,24 +6,22 @@ This folder contains tools to generate and import test data. Three sets of tools are available, sorted by respective subdirectories. -* **eth**: Import using sovereign wallets. -* **cic_eth**: Import using the `cic_eth` custodial engine. -* **cic_ussd**: Import using the `cic_ussd` interface (backed by `cic_eth`) +- **eth**: Import using sovereign wallets. +- **cic_eth**: Import using the `cic_eth` custodial engine. +- **cic_ussd**: Import using the `cic_ussd` interface (backed by `cic_eth`) Each of the modules include two main scripts: -* **import_users.py**: Registers all created accounts in the network -* **import_balance.py**: Transfer an opening balance using an external keystore wallet +- **import_users.py**: Registers all created accounts in the network +- **import_balance.py**: Transfer an opening balance using an external keystore wallet The balance script will sync with the blockchain, processing transactions and triggering actions when it finds. In its current version it does not keep track of any other state, so it will run indefinitly and needs You the Human to decide when it has done what it needs to do. - In addition the following common tools are available: -* **create_import_users.py**: User creation script -* **verify.py**: Import verification script -* **cic_meta**: Metadata imports - +- **create_import_users.py**: User creation script +- **verify.py**: Import verification script +- **cic_meta**: Metadata imports ## REQUIREMENTS @@ -36,14 +34,12 @@ source .venv/bin/activate Install all requirements from the `requirements.txt` file: -`pip install --extra-index-url https://pip.grassrootseconomics.net:8433 -r requirements.txt` - +`pip install --extra-index-url https://pip.grassrootseconomics.net -r requirements.txt` If you are importing metadata, also do ye olde: `npm install` - ## HOW TO USE ### Step 1 - Data creation @@ -60,7 +56,6 @@ If you want to use a `import_balance.py` script to add to the user's balance fro `python create_import_users.py --gift-threshold [--dir ] ` - ### Step 2 - Services Unless you know what you are doing, start with a clean slate, and execute (in the repository root): @@ -72,46 +67,46 @@ Then go through, in sequence: #### Base requirements If you are importing using `eth` and _not_ importing metadata, then the only service you need running in the cluster is: -* eth + +- eth In all other cases you will _also_ need: -* postgres -* redis +- postgres +- redis #### EVM provisions -This step is needed in *all* cases. +This step is needed in _all_ cases. `RUN_MASK=1 docker-compose up contract-migration` After this step is run, you can find top-level ethereum addresses (like the cic registry address, which you will need below) in `/service-configs/.env` - #### Custodial provisions This step is _only_ needed if you are importing using `cic_eth` or `cic_ussd` `RUN_MASK=2 docker-compose up contract-migration` - #### Custodial services If importing using `cic_eth` or `cic_ussd` also run: -* cic-eth-tasker -* cic-eth-dispatcher -* cic-eth-tracker -* cic-eth-retrier + +- cic-eth-tasker +- cic-eth-dispatcher +- cic-eth-tracker +- cic-eth-retrier If importing using `cic_ussd` also run: -* cic-user-tasker -* cic-user-ussd-server -* cic-notify-tasker + +- cic-user-tasker +- cic-user-ussd-server +- cic-notify-tasker If metadata is to be imported, also run: -* cic-meta-server - +- cic-meta-server ### Step 3 - User imports @@ -125,10 +120,7 @@ All external balance transactions are saved in raw wire format in `/txs If the contract migrations have been executed with the default "giftable" token contract, then the `token_symbol` in the `import_balance` scripts should be set to `GFT`. - - -#### Alternative 1 - Sovereign wallet import - `eth` - +#### Alternative 1 - Sovereign wallet import - `eth` First, make a note of the **block height** before running anything: @@ -142,9 +134,7 @@ After the script completes, keystore files for all generated accouts will be fou Then run: -`python eth/import_balance.py -v -r -p --token-symbol --offset -y ../keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c ` - - +`python eth/import_balance.py -v -r -p --token-symbol --offset -y ../keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c ` #### Alternative 2 - Custodial engine import - `cic_eth` @@ -158,7 +148,6 @@ In another terminal: The `redis_hostname_in_docker` value is the hostname required to reach the redis server from within the docker cluster, and should be `redis` if you left the docker-compose unchanged. The `import_users` script will receive the address of each newly created custodial account on a redis subscription fed by a callback task in the `cic_eth` account creation task chain. - #### Alternative 3 - USSD import - `cic_ussd` If you have previously run the `cic_ussd` import incompletely, it could be a good idea to purge the queue. If you have left docker-compose unchanged, `redis_url` should be `redis://localhost:63379`. @@ -177,13 +166,10 @@ In the event that you are running the command in a local environment you may wan `python cic_ussd/import_users.py -v --ussd-host --ussd-port --ussd-no-ssl -c config out` - - ### Step 4 - Metadata import (optional) The metadata import scripts can be run at any time after step 1 has been completed. - #### Importing user metadata To import the main user metadata structs, run: @@ -194,22 +180,18 @@ Monitors a folder for output from the `import_users.py` script, adding the metad If _number of users_ is omitted the script will run until manually interrupted. - - #### Importing phone pointer `node cic_meta/import_meta_phone.js ` If you imported using `cic_ussd`, the phone pointer is _already added_ and this script will do nothing. - ### Importing preferences metadata `node cic_meta/import_meta_preferences.js ` If you used the `cic_ussd/import_user.py` script to import your users, preferences metadata is generated and will be imported. - ##### Importing pins and ussd data (optional) Once the user imports are complete the next step should be importing the user's pins and auxiliary ussd data. This can be done in 3 steps: @@ -228,26 +210,26 @@ Once the creation of the pins file is complete, proceed to import the pins and u `python cic_ussd/import_pins.py -c config -v pinsdir ` - To import ussd data: -`python cic_ussd/import_ussd_data.py -c config -v userdir ` + `python cic_ussd/import_ussd_data.py -c config -v userdir ` The balance script is a celery task worker, and will not exit by itself in its current version. However, after it's done doing its job, you will find "reached nonce ... exiting" among the last lines of the log. The connection parameters for the `cic-ussd-server` is currently _hardcoded_ in the `import_users.py` script file. - ### Step 5 - Verify -`python verify.py -v -c config -r -p --token-symbol ` +`python verify.py -v -c config -r -p --token-symbol ` Included checks: -* Private key is in cic-eth keystore -* Address is in accounts index -* Address has gas balance -* Address has triggered the token faucet -* Address has token balance matching the gift threshold -* Personal metadata can be retrieved and has exact match -* Phone pointer metadata can be retrieved and matches address -* USSD menu response is initial state after registration + +- Private key is in cic-eth keystore +- Address is in accounts index +- Address has gas balance +- Address has triggered the token faucet +- Address has token balance matching the gift threshold +- Personal metadata can be retrieved and has exact match +- Phone pointer metadata can be retrieved and matches address +- USSD menu response is initial state after registration Checks can be selectively included and excluded. See `--help` for details. @@ -255,7 +237,6 @@ Will output one line for each check, with name of check and number of errors fou Should exit with code 0 if all input data is found in the respective services. - ## KNOWN ISSUES - If the faucet disbursement is set to a non-zero amount, the balances will be off. The verify script needs to be improved to check the faucet amount. diff --git a/apps/data-seeding/docker/Dockerfile b/apps/data-seeding/docker/Dockerfile index ec6064d1..9afaa5ee 100644 --- a/apps/data-seeding/docker/Dockerfile +++ b/apps/data-seeding/docker/Dockerfile @@ -17,13 +17,13 @@ COPY common/ cic_ussd/common/ COPY requirements.txt . COPY config/ config -ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net:8433 +ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net ARG EXTRA_PIP_ARGS="" ARG PIP_INDEX_URL=https://pypi.org/simple RUN pip install --index-url $PIP_INDEX_URL \ - --extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \ - -r requirements.txt + --extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \ + -r requirements.txt COPY . . diff --git a/docker-compose.yml b/docker-compose.yml index a310b6d0..fb493c32 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -47,7 +47,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: DEV_DATA_DIR: ${DEV_DATA_DIR:-/tmp/cic/config} @@ -100,7 +100,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: DATABASE_HOST: ${DATABASE_HOST:-postgres} @@ -130,7 +130,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: CIC_REGISTRY_ADDRESS: $CIC_REGISTRY_ADDRESS @@ -180,7 +180,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: CIC_REGISTRY_ADDRESS: $CIC_REGISTRY_ADDRESS @@ -228,7 +228,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: RPC_PROVIDER: ${RPC_PROVIDER:-http://evm:8545} @@ -272,7 +272,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: RPC_PROVIDER: ${RPC_PROVIDER:-http://evm:8545} @@ -319,7 +319,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: CIC_REGISTRY_ADDRESS: $CIC_REGISTRY_ADDRESS @@ -367,7 +367,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: CIC_REGISTRY_ADDRESS: $CIC_REGISTRY_ADDRESS @@ -415,7 +415,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: DATABASE_HOST: ${DATABASE_HOST:-postgres} @@ -534,7 +534,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: DATABASE_HOST: ${DATABASE_HOST:-postgres} @@ -564,7 +564,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: DATABASE_HOST: ${DATABASE_HOST:-postgres} @@ -604,7 +604,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: DATABASE_HOST: ${DATABASE_HOST:-postgres} @@ -635,7 +635,7 @@ services: args: DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics} PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple} - EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433} + EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net} EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS environment: DATABASE_HOST: ${DATABASE_HOST:-postgres}