- Create fly-no-auth.toml configuration for free deployment - Deploy to yargi-mcp-free.fly.dev with ENABLE_AUTH=false - Single machine deployment for development/testing use - Update CLAUDE.md with new deployment endpoints and usage info 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
46 lines
878 B
TOML
46 lines
878 B
TOML
# fly.toml app configuration file for yargi-mcp-noauth
|
|
#
|
|
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
|
|
#
|
|
|
|
app = 'yargi-mcp-free'
|
|
primary_region = 'fra'
|
|
|
|
[env]
|
|
ENABLE_AUTH = "false"
|
|
HOST = "0.0.0.0"
|
|
PORT = "8000"
|
|
LOG_LEVEL = "info"
|
|
|
|
[build]
|
|
|
|
[http_service]
|
|
internal_port = 8000
|
|
force_https = true
|
|
auto_stop_machines = 'off'
|
|
auto_start_machines = true
|
|
min_machines_running = 1
|
|
processes = ['app']
|
|
|
|
# Enable connection persistence for MCP sessions
|
|
[http_service.concurrency]
|
|
type = "connections"
|
|
hard_limit = 100
|
|
soft_limit = 80
|
|
|
|
[[vm]]
|
|
memory = '1gb'
|
|
cpu_kind = 'shared'
|
|
cpus = 1
|
|
|
|
[deploy]
|
|
strategy = "immediate"
|
|
|
|
[processes]
|
|
app = "python asgi_app.py"
|
|
|
|
[checks.http_health] # keep MCP /health live
|
|
type = "http"
|
|
interval = "30s"
|
|
timeout = "10s"
|
|
path = "/health" |