mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-10 06:14:20 +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
14 lines
252 B
Bash
Executable File
14 lines
252 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export PYTHONPATH=/omim/tools/python
|
|
export AIRFLOW_HOME=/airflow_home
|
|
|
|
# Initialize the database.
|
|
airflow initdb
|
|
|
|
# Start the web server, default port is 8880.
|
|
airflow webserver -p 8880 &
|
|
|
|
# Start the scheduler.
|
|
airflow scheduler
|