################################################################## # Dashboard application (the main part) # # Domain name or IP address of your host APP_HOST=raspberrypi # # SSL redirect: Use "true" (which is the default) if you want to auto-redirect to https FORCE_SSL=false # # Secret token to secure cookies, 128 chars long hexadecimal encoded string (don't use this example, make some random changes!) # Currently there are no cookies in Soletrus, but this may change in the future SECRET_KEY_BASE=f60debe97dcb73280a2cc83668fd60e8d0e8e48269036a7bce980ee53cfb312e377989a750b8c945a5f69b041289ecb4e2d9e40641b81257c65ac2d43e3c837f # # Date of commissioning of your photovoltaic system INSTALLATION_DATE=2022-01-27 # # Price you pay for 1kWH (in EUR) # Can be changed later in the UI when logged in as administrator ELECTRICITY_PRICE=0.28 # # Price you get for 1kWH (in EUR) # Can be changed later in the UI when logged in as administrator FEED_IN_TARIFF=0.0848 # # Password for the PostgreSQL database, used by the app to comunicate internally with the database POSTGRES_PASSWORD=my-secret-db-password # # Password to login as administrator, required to manage settings like historical prices ADMIN_PASSWORD=my-secret-login-password ################################################################## # Influx database settings # # Influx host (to access from SOLECTRUS dashboard and collectors) INFLUX_HOST=influxdb INFLUX_SCHEMA=http INFLUX_PORT=8086 # # Credentials for the Influx database INFLUX_ORG=solectrus INFLUX_USERNAME=admin INFLUX_PASSWORD=ExAmPl3PA55W0rD INFLUX_ADMIN_TOKEN=my-super-secret-admin-token INFLUX_BUCKET=my-solectrus-bucket INFLUX_MEASUREMENT_PV=SENEC INFLUX_POLL_INTERVAL=5 # # To keep things simple, we use ONE token (INFLUX_ADMIN_TOKEN) for both writing and reading. # For better security, you can use two separate tokens, created via the InfluxDB frontend. INFLUX_TOKEN_WRITE=my-super-secret-admin-token INFLUX_TOKEN_READ=my-super-secret-admin-token # # Volume path for storing the Influx data INFLUX_VOLUME_PATH=/home/pi/solectrus/influxdb ################################################################## # REDIS settings # REDIS_VOLUME_PATH=/home/pi/solectrus/redis ################################################################## # PostgreSQL database settings # DB_VOLUME_PATH=/home/pi/solectrus/postgresql ################################################################## # SENEC Collector # # Change this to your own SENEC IP address! SENEC_HOST=192.168.0.62 SENEC_SCHEMA=https SENEC_INTERVAL=5 ################################################################## # Solar forecasting with https://forecast.solar # API docs: https://doc.forecast.solar/doku.php?id=api:estimate # # Latitude of the plant location FORECAST_LATITUDE=50.207744 # # Longitude of the plant location FORECAST_LONGITUDE=7.7019262 # # Plane declination: 0 (horizontal) - 90 (vertical) FORECAST_DECLINATION=32 # # Plane azimuth: -180 ... 180 (-180 = north, -90 = east, 0 = south, 90 = west, 180 = north) #FORECAST_AZIMUTH=-180 FORECAST_AZIMUTH=-29 #FORECAST_AZIMUTH=151 # # Installed modules power in kilowatt peak (kWp) FORECAST_KWP=5.25 #FORECAST_KWP=3.96 # # Update interval in seconds, 900s = 15 minutes, the public (and free) API allows a minimum of 900 seconds FORECAST_INTERVAL=900