Workflow Guide
Paste Your Code
Start here when you have working code and just want it running. Whether you wrote it yourself, got it from an AI, or cobbled it together from a tutorial, paste it in and go.
Step By Step
How it works
The shortest path from code to a live service. You can always refine the project after your first deploy.
-
1
Paste or upload your code
Paste code into the editor, drag in files, or upload a folder. Multi-file uploads get a split-pane editor with a file sidebar.
-
2
Let us inspect the files
We analyze your code, detect the service type, and infer the entry point and runtime details automatically.
-
3
Review any safety warnings
If we find API keys in the code or another fix worth reviewing, we flag it before deploy so nothing fails silently.
-
4
Deploy once it looks right
Once the config looks good, hit Deploy. Your service page is where you'll see the live result.
Behind The Scenes
What we handle automatically
-
Smart paste cleanup. If your paste includes extra text around the code, we strip it out automatically. You don't need to clean it up before submitting.
-
Service detection. We figure out whether your code should run as a web app, a scheduled job, a webhook, or a background worker, and pre-fill the name and entry point.
-
Missing manifest generation. If your code needs dependencies but there's no package.json or requirements.txt, we generate one. You can review exactly what was added.
Safety Checks
Two warnings you might see
Hardcoded secrets
If we find an API key or secret in your code, we'll ask you to move it into secure storage instead of deploying it in source.
Ambiguous app shape
If the entry point is unclear or the code is incomplete, you may need to review the suggested settings. We'll help where we can, but we can't guess what's missing.
Read Next