Replace ENV settings in docker-compose.yml then run
docker-compose up --buildInstall package requirements:
pip install -r requirements.txtAdd current path to Python path
export PYTHONPATH=$PYTHONPATH:$(pwd)Create ./app/local_settings.py
DB_CONNECTION = "mysql+pymysql://root:root@localhost:3306/polkascan?charset=utf8mb4"
SUBSTRATE_RPC_URL = "ws://127.0.0.1:9944/"
INSTALLED_ETL_DATABASES = []Apply database migrations
alembic upgrade headRun harvester
python app/harvester.py --force-start