1
0
Fork 0
mirror of https://github.com/ProjectSynthoria/SynthoriaArchive.git synced 2025-03-12 07:26:54 +02:00
SynthoriaArchive/run.py
2025-03-02 15:08:58 +02:00

11 lines
246 B
Python
Executable file

#!/usr/bin/env python3
"""
Main entry point for running the Nyaa application.
Compatible with Python 3.13.
"""
from nyaa import create_app
app = create_app('config')
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5500, debug=True)