1
0
Fork 0
mirror of https://github.com/ProjectSynthoria/SynthoriaArchive.git synced 2025-03-11 15:06:55 +02:00
SynthoriaArchive/run.py

11 lines
247 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=False)