6 lines
216 B
Python
6 lines
216 B
Python
|
from lernplattform import app
|
||
|
from lernplattform.models import initialize_database
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
initialize_database() # Initialisiere die Datenbank beim Start der Anwendung
|
||
|
app.run(debug=True)
|