Spaces:
No application file
No application file
File size: 272 Bytes
d93e680 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
"""
RAG ๊ฒ์ ์ฑ๋ด ๋ฉ์ธ ์คํ ํ์ผ
"""
# os ๋ชจ๋ ์ํฌํธ
import os
# ์ฑ ๋ชจ๋์์ Flask ์ฑ ๊ฐ์ ธ์ค๊ธฐ
from app.app import app
if __name__ == '__main__':
port = int(os.environ.get("PORT", 7860))
app.run(debug=False, host='0.0.0.0', port=port)
|