github-actions[bot]
Sync from GitHub: 172c485e85c5aea002b4aeb11058ed9d6d4dfcfe to branch main
22e29e9 | 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") | |
| def fastapi_app(): | |
| return app | |