zcash-grant-system/backend/.env.example

24 lines
951 B
Plaintext
Raw Normal View History

2018-09-10 09:55:26 -07:00
# Environment variable overrides for local development
FLASK_APP=app.py
FLASK_ENV=development
SITE_URL="https://grant.io" # No trailing slash
2018-09-10 09:55:26 -07:00
DATABASE_URL="sqlite:////tmp/dev.db"
REDISTOGO_URL="redis://localhost:6379"
SECRET_KEY="not-so-secret"
SENDGRID_API_KEY="optional, but emails won't send without it"
2018-11-25 20:02:35 -08:00
# for ropsten use the following
# ETHEREUM_ENDPOINT_URI = "https://ropsten.infura.io/API_KEY"
2018-11-16 19:33:25 -08:00
ETHEREUM_ENDPOINT_URI = "http://localhost:8545"
2018-11-25 20:02:35 -08:00
# CROWD_FUND_URL = "https://eip-712.herokuapp.com/contract/crowd-fund"
# CROWD_FUND_FACTORY_URL = "https://eip-712.herokuapp.com/contract/factory"
CROWD_FUND_URL = "http://localhost:5000/dev-contracts/CrowdFund.json"
CROWD_FUND_FACTORY_URL = "http://localhost:5000/dev-contracts/CrowdFundFactory.json"
# SENTRY_DSN="https://PUBLICKEY@sentry.io/PROJECTID"
# SENTRY_RELEASE="optional, overrides git hash"
2018-11-25 20:02:35 -08:00
2018-11-16 19:33:25 -08:00
UPLOAD_DIRECTORY = "/tmp"
2018-11-21 15:24:33 -08:00
UPLOAD_URL = "http://localhost:5000" # for constructing download url