Introduction
Soup is dev tools without the VC math.
What Soup Is
Section titled “What Soup Is”A platform that bundles common dev infrastructure into one product:
- Secrets management
- Feature flags with targeting
- Content management (CMS)
- Scheduled jobs (cron)
- Workflow automation
- User segments
One dashboard, one CLI, one API. No per-service bills.
What’s Live Right Now
Section titled “What’s Live Right Now”These modules are fully functional and deployed:
- Secrets - Encrypted env vars with inheritance
- Feature Flags - Boolean/variant flags with rollouts and targeting
- Segments - Reusable audience targeting
- CMS - Headless content management with structured data
- Cron - HTTP-based scheduled jobs with retries
- Workflows - Multi-step automation
Coming later: Forms, API Keys, Usage Billing, Analytics, Session Replay.
Pricing
Section titled “Pricing”Free — up to 2 users, all modules. 10M analytics events/mo, 1GB CMS storage.
Team ($5/user/mo) — per additional user beyond 2. 100M analytics events/mo, 100GB CMS. $0.10/GB overage. No feature gates.
Self-host is free forever. Full pricing details.
Installation
Section titled “Installation”# Download CLIcurl -fsSL https://cli.getsoup.dev/install.sh | sh
# Loginsoup login --device # for remote/headless machinessoup login # opens browser
# Use itsoup secrets set API_KEY xyzsoup flags create dark-modesoup cron create daily-sync --schedule "0 2 * * *" --url https://...Self-Hosted
Section titled “Self-Hosted”Open source. Deploy your own engine:
git clone https://github.com/yourusername/soupcd soup-enginecargo build --release./target/release/soup-engineUse CLI in standalone mode with API keys (no GitHub auth needed).
Next Steps
Section titled “Next Steps”- Quick Start - Get running in 5 minutes
- Authentication - CLI login, API tokens, service accounts
- API Reference - REST API docs