Render Tutorials
Learn Blueprints by shipping a live app

What is Render?

⏱ 5 min

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 repo
Only you can open localhost Builds and starts the app for you
Turns off when you close the lid Stays up at a public URL

Render 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:

  1. Render cloned the GitHub repo
  2. Ran npm install (build)
  3. Ran npm start (start)
  4. 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

TermPlain meaning
RenderThe cloud platform that builds from Git and hosts your app
DashboardThe website where you create services, watch deploys, and find your URL
WorkspaceThe account “home” that owns services (use Render Atlanta workshop after your invite)
ServiceOne running app Render builds and keeps online
Web serviceA service for apps with a server (Express / FastAPI), not a static-only site
DeployOne build-and-run attempt from a Git commit
Build / start commandInstall/compile, then launch (npm install / npm start, or pip + uvicorn)
Public URLYour *.onrender.com address
BlueprintA 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 does Render do in this tutorial?

What you learned

  • Render = cloud host for your Git-backed app
  • Dashboard = where you manage it
  • Next: install agent skills (and optional MCP)