auth google + jwt

This commit is contained in:
JSC
2025-06-27 13:14:29 +02:00
commit 8e2dbd8723
21 changed files with 1107 additions and 0 deletions

11
main.py Normal file
View File

@@ -0,0 +1,11 @@
from app import create_app
def main() -> None:
"""Run the Flask application."""
app = create_app()
app.run(debug=True, host="0.0.0.0", port=5000)
if __name__ == "__main__":
main()