kopia lustrzana https://github.com/glidernet/ogn-python
33 wiersze
918 B
Python
33 wiersze
918 B
Python
SQLALCHEMY_DATABASE_URI = 'postgresql://postgres@localhost:5432/ogn'
|
|
|
|
BROKER_URL = 'redis://localhost:6379/0'
|
|
CELERY_RESULT_BACKEND = 'redis://localhost:6379/0'
|
|
|
|
|
|
from datetime import timedelta
|
|
|
|
CELERYBEAT_SCHEDULE = {
|
|
'update-ddb': {
|
|
'task': 'ogn.collect.database.import_ddb',
|
|
'schedule': timedelta(minutes=15),
|
|
},
|
|
'update-takeoff-and-landing': {
|
|
'task': 'ogn.collect.logbook.compute_takeoff_and_landing',
|
|
'schedule': timedelta(minutes=15),
|
|
},
|
|
'update-logbook': {
|
|
'task': 'ogn.collect.logbook.compute_logbook',
|
|
'schedule': timedelta(minutes=1),
|
|
},
|
|
'update-altitudes': {
|
|
'task': 'ogn.collect.logbook.compute_altitudes',
|
|
'schedule': timedelta(minutes=1),
|
|
},
|
|
'update-receiver-table': {
|
|
'task': 'ogn.collect.receiver.update_receivers',
|
|
'schedule': timedelta(minutes=15),
|
|
},
|
|
}
|
|
|
|
CELERY_TIMEZONE = 'UTC'
|