You already ran the app on your laptop. Render is where that same app can run on the public internet for other people (and for you on your phone).
Render in one picture
Your laptop Render───────────── ──────────────────────────────Code + npm/python start Pulls your GitHub repoOnly you can open localhost Builds and starts the app for youTurns off when you close the lid Stays up at a public URLRender is a cloud platform: computers in a data center that build your code from Git and keep a process listening for HTTP. You do not SSH in or manage virtual machines for this tutorial. You connect a repo, set build/start commands (or put them in a Blueprint), and Render deploys.
The control panel is the Dashboard: dashboard.render.com.
Official intro: Your first deploy.
What Render did for the demo
The live demo at firstdeploy-demo.onrender.com is this starter, hosted by Render:
- Render cloned the GitHub repo
- Ran
npm install(build) - Ran
npm start(start) - Gave the process a public HTTPS URL
Your laptop does steps 2–3 locally. Render does them in the cloud and adds the URL.
Words you need today
| Term | Plain meaning |
|---|---|
| Render | The cloud platform that builds from Git and hosts your app |
| Dashboard | The website where you create services, watch deploys, and find your URL |
| Workspace | The account “home” that owns services (use Render Atlanta workshop after your invite) |
| Service | One running app Render builds and keeps online |
| Web service | A service for apps with a server (Express / FastAPI), not a static-only site |
| Deploy | One build-and-run attempt from a Git commit |
| Build / start command | Install/compile, then launch (npm install / npm start, or pip + uvicorn) |
| Public URL | Your *.onrender.com address |
| Blueprint | A render.yaml file that lists what to create so you are not re-clicking forms |
Free tier nap (calm warning)
On Free, after about 15 minutes with no traffic the app may sleep. The first visit can take about a minute. Wait for the loading page. Do not redeploy yet.
Docs: Web services · Free instances.
What you learned
- Render = cloud host for your Git-backed app
- Dashboard = where you manage it
- Next: install agent skills (and optional MCP)