implement ensure_vms_and_db_are_synced in cron task and add default

sender to readme
This commit is contained in:
2020-05-21 21:40:41 -05:00
parent 2f55ce904e
commit e2c51d067e
6 changed files with 38 additions and 6 deletions

View File

@ -21,6 +21,7 @@ app.config.from_mapping(
SECRET_KEY=os.environ.get("SECRET_KEY", default="dev"),
VIRTUALIZATION_MODEL=os.environ.get("VIRTUALIZATION_MODEL", default="mock"),
LOG_LEVEL=os.environ.get("LOG_LEVEL", default="INFO"),
ADMIN_EMAIL_ADDRESSES=os.environ.get("ADMIN_EMAIL_ADDRESSES", default="ops@cyberia.club"),
DATABASE_URL=os.environ.get("DATABASE_URL", default="sql://postgres:dev@localhost:5432/postgres"),
DATABASE_SCHEMA=os.environ.get("DATABASE_SCHEMA", default="public"),