waterleaf / app.py
hkaraoguz's picture
Harden Space OAuth startup
662f448 verified
Raw
History Blame
250 Bytes
from waterleaf.runtime import build_application
from waterleaf.space import configure_hf_space_environment
from waterleaf.web import create_web_app
configure_hf_space_environment()
application = build_application()
app = create_web_app(application)