-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed .env, added .env to .gitignore, added docker setup environmen…
…t variables to .env.example (#94) * Update .env.example * Update .gitignore * Delete .env * Update .env.example * added context to the env example
- Loading branch information
1 parent
eebf552
commit 05ae555
Showing
3 changed files
with
19 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
# User needs to add their Enphase API details | ||
ENPHASE_API_KEY = 'user_enphase_api_key' | ||
ENPHASE_USER_ID = 'user_enphase_user_id' | ||
ENPHASE_USER_ID = 'user_enphase_user_id' | ||
|
||
# This section is for OpenMeteo setup | ||
|
||
# Docker is used to fetch and store OpenMeteo's open data, targeting temperature_2m, precipitation, | ||
# and cloud_cover from the ncep_gfs013 dataset. | ||
# It is being managed through a Docker setup, detailed in the following variables and | ||
# docker-compose files, which automates data retrieval for the past three days and continuously checks for updates. | ||
|
||
# The following variable can be altered to allow the modification of the dataset and variables. | ||
# The docker-compose file pulls the data for the past 3 days and downloads the data in the docker volume, | ||
# which can be accessed through an API endpoint. | ||
|
||
OPEN_METEO_MODELS = models separated by commas e.g: ncep_gfs013 | ||
OPEN_METEO_VARIABLES = variables separated by commas e.g: temperature_2m,precipitation,cloud_cover | ||
OPEN_METEO_MAX_AGE_DAYS = integer e.g: 3 | ||
OPEN_METEO_REPEAT_INTERVAL = integer e.g: 5 | ||
OPEN_METEO_CONCURRENT = integer e.g: 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters