akiko19191's picture
Upload folder using huggingface_hub
aecb7e8 verified
raw
history blame contribute delete
187 Bytes
from app import create_app
import os
os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1'
app = create_app()
if __name__ == '__main__':
app.run(host="0.0.0.0",debug=True, port=7860)