3c55b28e69
* feat(explorer-api): auto update geoip database * feat(explorer-api): read dotenv file * fix(explorer-api): gitignore * feat: move geoipupdate service to root compose file
24 lines
919 B
Bash
24 lines
919 B
Bash
// Copyright 2020 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
RUST_LOG=info
|
|
RUST_BACKTRACE=1
|
|
|
|
#########################################
|
|
# geoipupdate (needed for explorer-api) #
|
|
#########################################
|
|
# MaxMind account ID (change it to a valid account ID)
|
|
GEOIPUPDATE_ACCOUNT_ID=xxx
|
|
# MaxMind license key (change it to a valid license key)
|
|
GEOIPUPDATE_LICENSE_KEY=xxx
|
|
# List of space-separated database edition IDs. Edition IDs may
|
|
# consist of letters, digits, and dashes. For example, GeoIP2-City
|
|
# would download the GeoIP2 City database (GeoIP2-City).
|
|
GEOIPUPDATE_EDITION_IDS=GeoLite2-Country
|
|
# The number of hours between geoipupdate runs. If this is not set
|
|
# or is set to 0, geoipupdate will run once and exit.
|
|
GEOIPUPDATE_FREQUENCY=72
|
|
# The path to the directory where geoipupdate will download the
|
|
# database.
|
|
GEOIP_DB_DIRECTORY=./explorer-api/geo_ip
|