Getting Started
From Zero to Production: Deploy Your First App on Remoud
Never deployed before? This guide walks you through it step by step.
Create a Simple App
mkdir my-first-app && cd my-first-app
npm init -y
npm install express
Create index.js:
const express = require('express');
const app = express();
const port = process.env.PORT || 3000;
app.get('/', (req, res) => {
res.send('Hello, World! My first cloud app!');
});
app.listen(port, () => console.log('Running on port ' + port));
Push to GitHub
git init && git add . && git commit -m "first app"
git remote add origin https://github.com/YOU/my-first-app.git
git push -u origin main
Sign Up and Deploy
- Go to remoud.com and sign up with GitHub
- Click New Project, select your repo
- Click Deploy
Within seconds, your app is live! No Nginx, no Docker, no server config.
Next Steps
- Add a database
- Set environment variables
- Connect a custom domain
- Push changes - auto-redeploys
Ready to deploy?
Get your app live in seconds with Remoud. Free tier available.
Start deploying for free →