Files
iot-logic/src/utils/config.py
Torma Kristóf 0956477831
All checks were successful
continuous-integration/drone/push Build is passing
skeletons are back in the closet
2020-08-24 20:38:38 +02:00

16 lines
347 B
Python

#!/usr/bin/env python3
import os
"""
Main Flask RESTful API
"""
__author__ = "@tormakris"
__copyright__ = "Copyright 2020, Birbnetes Team"
__module_name__ = "app"
__version__text__ = "1"
SENTRY_DSN = os.environ.get("SENTRY_DSN")
RELEASE_ID = os.environ.get("RELEASE_ID", "test")
RELEASEMODE = os.environ.get("INPUT_SERVICE_RELEASEMODE", "dev")