static 폴더 및 하위 파일 업로드

This commit is contained in:
sotam0316
2026-04-22 12:05:03 +09:00
commit 514b209a5a
203 changed files with 29494 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
from flask import Flask
from routes.main_routes import main_bp
from routes.api_routes import api_bp
def create_app():
app = Flask(__name__)
# Register Blueprints
app.register_blueprint(main_bp)
app.register_blueprint(api_bp)
return app
if __name__ == '__main__':
app = create_app()
# 로컬 실행 최적화
print("------------------------------------------")
print("drawNET Premium Server Starting...")
print("URL: http://127.0.0.1:5000")
print("------------------------------------------")
app.run(debug=True, port=5000)