Introduction
On this page
What is Stackblaze?
Stackblaze is a platform that makes it really simple to deploy your code as a web service.
Stackblaze can build your code into a container using one of two methods:
- Building a Dockerfile that you provide in your repo
- By automatically detecting your codebase
Once built, we deploy it to your Dev environment on Stackblaze and provide you with a unique URL.
Next time you push a change to your repo, we repeat the process automatically or manually depending on your chosen settings.
flowchart LR
code[Your code]
git[Git repo]
code -->|push|git
git -->|deploy| dev
subgraph workspace [Stackblaze Workspace]
subgraph project [Project]
direction LR
dev[Stackblaze Dev]
prod[Stackblaze Prod]
dev -->|promote| prod
subgraph dev [Dev]
direction TB
devApp[App]
devDb[DB]
devApp -.-> devDb
end
subgraph prod [Prod]
direction TB
prodApp[App]
prodDb[DB]
prodApp -.-> prodDb
end
end
end