CRM / modal_app.py
github-actions[bot]
Sync from GitHub: 172c485e85c5aea002b4aeb11058ed9d6d4dfcfe to branch main
22e29e9
Raw
History Blame Contribute Delete
311 Bytes
import modal
import os
from main import app
# Create a Modal App
stub = modal.Stub("crm-api-monolith")
# Define the image with all dependencies
image = modal.Image.debian_slim().pip_install_from_requirements("requirements.txt")
@stub.function(image=image)
@modal.asgi_app()
def fastapi_app():
return app