From c999a91a7919872d0dea0915bcb34c70a17ff780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Sun, 29 Mar 2020 12:44:20 +0200 Subject: [PATCH] create startup python file --- app.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 app.py diff --git a/app.py b/app.py new file mode 100644 index 0000000..dff38f2 --- /dev/null +++ b/app.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python +import sentry_sdk + +""" +Main Flask RESTful API +""" + +__author__ = "@tormakris" +__copyright__ = "Copyright 2020, GoldenPogácsa Team" +__module_name__ = "app" +__version__text__ = "1" + +sentry_sdk.init("https://3fa5ae886ba1489092ad49a93cb419c1@sentry.kmlabz.com/9") + +if __name__ == "__main__": + print("Producer") \ No newline at end of file