fdbe3a1f6a
* chore(explorer-api): remove useless route (/terms) * feat(explorer-api-geoip): add coordinates lat&lon * fix(explorer): mixnode location * fix: typo * fix: clippy
24 lines
916 B
Bash
24 lines
916 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-City
|
|
# 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
|