mpeltriaux
7689e0b80d
* finishes egon compatible (tested) data export * moves egon export into celery process * adds export of data in case of intervention recording * adds _RABBITMQ_ settings for intervention/settings.py * adds new dependency for requirements.txt
17 lines
469 B
Python
17 lines
469 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 30.11.20
|
|
|
|
"""
|
|
INTERVENTION_IDENTIFIER_LENGTH = 6
|
|
INTERVENTION_IDENTIFIER_TEMPLATE = "EIV-{}"
|
|
|
|
# EGON connection settings via rabbitmq
|
|
# NEEDED FOR BACKWARDS COMPATIBILITY
|
|
EGON_RABBITMQ_HOST = "CHANGE_ME"
|
|
EGON_RABBITMQ_PORT = "CHANGE_ME"
|
|
EGON_RABBITMQ_USER = "CHANGE_ME"
|
|
EGON_RABBITMQ_PW = "CHANGE_ME"
|