Skip to main content
Deploy TealTiger on managed PaaS platforms for rapid deployment without infrastructure management. This guide covers Heroku, Railway, Render, Fly.io, and other popular PaaS platforms.

Why PaaS?

Benefits:
  • Rapid deployment - Deploy in minutes with one command
  • Managed infrastructure - No servers, databases, or networking to manage
  • Built-in CI/CD - Automatic deployments from Git
  • Quick scaling - Scale with a slider or command
  • Developer-friendly - Focus on code, not infrastructure
Use Cases:
  • Rapid prototyping and MVPs
  • Startups and small teams
  • Side projects and demos
  • Development and staging environments
  • Low-traffic production applications

Heroku

One-Click Deploy

Deploy to Heroku

Manual Deployment

Procfile

app.json (One-Click Deploy)

Python Example


Railway

Deploy with Railway CLI

railway.json

One-Click Deploy

Deploy on Railway

Render

Deploy with render.yaml

Deploy from Dashboard

  1. Go to render.com
  2. Click “New +” → “Web Service”
  3. Connect your Git repository
  4. Configure:
    • Name: tealtiger-app
    • Environment: Python 3
    • Build Command: pip install -r requirements.txt
    • Start Command: gunicorn app:app --workers 4
  5. Add environment variables
  6. Click “Create Web Service”

One-Click Deploy

Deploy to Render

Fly.io

Deploy with Fly CLI

fly.toml


Google App Engine

Deploy with gcloud

app.yaml


Azure App Service

Deploy with Azure CLI


Vercel (Edge Functions)

Deploy with Vercel CLI

vercel.json


Comparison Table


Cost Optimization

Tips for PaaS Deployments

  1. Use auto-scaling to scale down during low traffic
  2. Enable sleep mode for development environments
  3. Use free tiers for staging and testing
  4. Monitor usage with platform dashboards
  5. Set budget alerts to avoid surprises

TealTiger Cost Tracking


Monitoring

Health Check Endpoint

Platform-Specific Monitoring

  • Heroku: Use Papertrail or Logentries add-ons
  • Railway: Built-in metrics dashboard
  • Render: Built-in metrics and logs
  • Fly.io: Built-in metrics and Prometheus integration
  • App Engine: Google Cloud Monitoring
  • Azure: Application Insights

Support