Skip to content

Commit

Permalink
Merge pull request #388 from City-of-Turku/fix/default-environment-va…
Browse files Browse the repository at this point in the history
…riables

Fix/default environment variables
  • Loading branch information
juuso-j authored Oct 3, 2024
2 parents 6a0bc4f + f0a4b4b commit 6b18e75
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
32 changes: 16 additions & 16 deletions config_dev.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -145,22 +145,22 @@ [email protected]
EMAIL_PORT=25
EMAIL_USE_TLS=True

# Django project log level, default INFO
DJANGO_LOG_LEVEL=
# Turku services importers log level, default DEBUG
TURKU_SERVICES_IMPORT_LOG_LEVEL=
# Search log level, default INFO
SEARCH_LOG_LEVEL=
# IoT APP, default INFO
IOT_LOG_LEVEL=
# Eco counter, default INFO
ECO_COUNTER_LOG_LEVEL=
# Mobility data (includes importers), default INFO
MOBILITY_DATA_LOG_LEVEL=
# Bicycle networks APP, default INFO
BICYCLE_NETWORK_LOG_LEVEL=
# Street maintenance, default INFO
STREET_MAINTENANCE_LOG_LEVEL=
# Django project log level
DJANGO_LOG_LEVEL=INFO
# Turku services importers log level
TURKU_SERVICES_IMPORT_LOG_LEVEL=INFO
# Search log level
SEARCH_LOG_LEVEL=INFO
# IoT APP,
IOT_LOG_LEVEL=INFO
# Eco counter
ECO_COUNTER_LOG_LEVEL=INFO
# Mobility data (includes importers)
MOBILITY_DATA_LOG_LEVEL=INFO
# Bicycle networks APP
BICYCLE_NETWORK_LOG_LEVEL=INFO
# Street maintenance
STREET_MAINTENANCE_LOG_LEVEL=INFO

# Settings needed for enabling Turku area:
#ADDITIONAL_INSTALLED_APPS=smbackend_turku,ptv
Expand Down
4 changes: 2 additions & 2 deletions smbackend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
ECO_COUNTER_STATIONS_URL=(str, None),
ECO_COUNTER_OBSERVATIONS_URL=(str, None),
TRAFFIC_COUNTER_OBSERVATIONS_BASE_URL=(str, None),
LAM_COUNTER_STATIONS_URL=(str, None),
LAM_COUNTER_API_BASE_URL=(str, None),
LAM_COUNTER_STATIONS_URL=(str, ""),
LAM_COUNTER_API_BASE_URL=(str, ""),
GAS_FILLING_STATIONS_IDS=(dict, {}),
CHARGING_STATIONS_IDS=(dict, {}),
BICYCLE_STANDS_IDS=(dict, {}),
Expand Down
2 changes: 1 addition & 1 deletion smbackend_turku/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Note, All imports can and is recommended to be run from the Admin using Celery T
```


## Enricing addresses with geo-search-data
## Enriching addresses with geo-search-data
This enriches addresses imported with the address importer(from the WFS server)
```
./manage.py turku_services_import enriched_addresses
Expand Down

0 comments on commit 6b18e75

Please sign in to comment.