mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 05:13:58 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
13 lines
215 B
Python
13 lines
215 B
Python
import os
|
|
|
|
from airmaps.instruments import settings
|
|
|
|
CONFIG_PATH = os.path.join(
|
|
os.path.dirname(os.path.join(os.path.realpath(__file__))),
|
|
"var",
|
|
"etc",
|
|
"airmaps.ini",
|
|
)
|
|
|
|
settings.init(CONFIG_PATH)
|