13 lines
367 B
Python
13 lines
367 B
Python
__author__ = "Florian Kaiser"
|
|
__copyright__ = "Copyright 2022, Project Aktienbot"
|
|
__credits__ = ["Florian Kaiser", "Florian Kellermann", "Linus Eickhof", "Kevin Pauer"]
|
|
__license__ = "GPL 3.0"
|
|
__version__ = "1.0.0"
|
|
|
|
from app import create_app
|
|
|
|
|
|
# Create an application instance that web servers can use.
|
|
application = create_app('config/flask.cfg')
|
|
application.run()
|