Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

.env

Blame
  • .env 485 B
    # storage API port
    STORAGE_PORT=8081
    # postgres database 
    PG_PORT=5432
    PG_USER="urbanite"
    PG_PASSWORD="password"
    PG_DB="urbanite"
    PG_HOST="db"
    FLASK_SECRET_KEY="secret"
    # URLS of other components with ports
    DATA_DIR="/storage/app/data"
    ASSETS_DIR="/storage/app/app/assets"
    HOST_DATA_DIR="../storage_data"
    TS_URL="http://ts:8082"
    DSS_URL="http://dss:5003"
    DEXI_DIR="/storage/app/dexi"
    # city - one of "bilbao", "amsterdam", "messina", "helsinki"
    URBANITE_CITY="bilbao"
    DEVELOPMENT=True