Flask is Python's micro web framework. Deploy your Flask app to a real server with one command — no Gunicorn setup, no WSGI plumbing, no manual virtualenv.
Flask is simple to write but its production deployment stack (Gunicorn + nginx + systemd + virtualenv) is not.
Recommended plan for Flask
InstaPods looks for app.py or wsgi.py as the entry point. Name your Flask app object "app" (e.g., app = Flask(__name__)) for automatic detection.
Include a requirements.txt with Flask and all dependencies. InstaPods runs pip install automatically in an isolated environment.
Flask static files in the /static directory are served directly. For production, InstaPods configures Gunicorn behind a reverse proxy to handle both.
One command. Real server. HTTPS included. No DevOps degree required.
Get Started