Skip to content

Run the Whole Stack. Solo.

Own your infrastructure from application to deployment. No DevOps team required.

Solo developers are forced to become their own DevOps team. Terraform, IAM, networking, load balancers, CI/CD. The pressure builds. StackSolo gives you structure to operate at depth without losing control.


{
"project": {
"name": "my-app",
"gcpProjectId": "my-gcp-project",
"networks": [{
"functions": [{ "name": "api" }],
"uis": [{ "name": "web" }],
"loadBalancer": {
"routes": [
{ "path": "/api/*", "backend": "api" },
{ "path": "/*", "backend": "web" }
]
}
}]
}
}
Terminal window
stacksolo deploy

Cloud Functions, Firebase Hosting, Load Balancer, IAM, networking. All handled.


stacksolo init

Configures your GCP project, enables APIs, creates your config file.

stacksolo dev

Local Kubernetes stack with Firebase emulators. Test before you ship.

stacksolo deploy

Generates CDKTF, runs Terraform, deploys to GCP. Production ready.

stacksolo destroy

Tears down all infrastructure cleanly when you’re done.


StackSolo generates real infrastructure code in .stacksolo/cdktf/. Inspect it. Modify it. Eject whenever you want.

No SaaS. No accounts. Runs on your machine with your credentials. Your infrastructure stays yours.


Terminal window
npm install -g @stacksolo/cli
stacksolo init

View on GitHub