Go to file
Blair Vanderlugt 2537fa8920 improvement: updated folder structure 2021-10-08 12:29:17 -07:00
apps improvement: updated folder structure 2021-10-08 12:29:17 -07:00
ci_templates Dataseeding container 2021-09-21 06:04:44 +00:00
contracts improvement: updated folder structure 2021-10-08 12:29:17 -07:00
scripts Fixes migrations in cic-cache (ideally) 2021-09-21 05:33:46 +00:00
tests improvement: updated folder structure 2021-10-08 12:29:17 -07:00
.gitignore improvement: updated folder structure 2021-10-08 12:29:17 -07:00
.gitlab-ci.yml Dataseeding container 2021-09-21 06:04:44 +00:00
.gitmodules cic cache build 2021-02-18 05:04:30 +00:00
README.md improvement: updated folder structure 2021-10-08 12:29:17 -07:00
docker-compose.yml improvement: updated folder structure 2021-10-08 12:29:17 -07:00

README.md

cic-internal-integration

Getting started

Preperation

Copy the .env_sample file to .env and populate with appropriate env vars

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

Run app/contract-migration to deploy contracts

RUN_MASK=3 docker-compose up contract-migration

stop cluster

docker-compose down

stop cluster and delete data

docker-compose down -v --remove-orphans

rebuild an images

docker-compose up --build <service_name>

to delete the buildkit cache

docker builder prune --filter type=exec.cachemount