Complete Full-Stack Setup - Create production-ready applications with zero configuration
Every project created with this framework gets a complete, production-ready setup:
--type=web)/api/graphql/api/health--type=app)/graphql endpoint/healthCreates complete, production-ready applications with everything configured.
~/schybo/scripts/dev-framework/create-project.sh \
Β Β --name=my-recipe-app \
Β Β --type=app \
Β Β --init-git--name - Project name (required)--type - app or web--init-git - Auto-create GitHub repo--github - GitHub usernameAll apps deploy to Vercel via git push. Subdomains are configured in the Vercel dashboard and routed via Next.js middleware.
Middleware-based subdomain routing β each app gets its own *.schybo.com domain
Push to git and deploy automatically with Vercel
Dedicated users, proper permissions, migrations, environment setup
Automatic builds, preview deployments, and production deploys via Vercel
Auto-secrets, CI/CD workflows, deployment keys
Built-in health checks, centralized dashboard
pnpm, Next.js optimization, connection pooling
JWT secrets, SSL auto-renewal, headers configured
Let's Encrypt certificates, HTTPS redirects
~/schybo/scripts/dev-framework/create-project.sh \
--name=protein-tracker \
--type=web \
--description="Track and rank protein bars" \
--init-gitResult: Complete Next.js app with PostgreSQL, GraphQL, health checks, and GitHub repo.
cd ~/protein-tracker
pnpm dev # Start Next.js with GraphQL
pnpm db:studio # Open database UIResult: Full development environment running locally with database management.
# Connect to Vercel and push:
vercel link
git push origin mainResult: Live on Vercel with automatic SSL, preview deploys, and production builds.
/api/graphql/graphqlEverything uses pnpm for consistency and performance:
pnpm install, pnpm devpnpm install, pnpm startpnpm db:push, pnpm db:studiomain to deploy via VercelpnpmEvery application gets comprehensive health monitoring:
https://yoursite.com/api/healthhttps://api.yoursite.com/healthAll applications appear automatically in the centralized health dashboard at: https://schybo.com/health-dashboard
Start building your features - the infrastructure is done! π