Quick Start Guide
This guide assumes you have already created an account and are logged in to the Roundrobin dashboard.
Step 1: Create a New Project
From your dashboard, click the "New Project" button. You'll be asked to provide:
- Project Name - A unique name for your project
- Git Repository - The URL of your Git repository (GitHub, GitLab, or Bitbucket)
- Branch - The branch to deploy (usually "main" or "master")
Step 2: Configure Build Settings
Roundrobin automatically detects your application's language and framework. You can customize:
Build Command
The command to build your application (e.g., npm run build, go build).
Start Command
The command to start your application (e.g., npm start, ./main).
Environment Variables
Add any environment variables your application needs. These are encrypted and securely stored.
Step 3: Deploy
Click "Deploy" to start your first deployment. Roundrobin will:
- Clone your repository
- Install dependencies
- Run your build command
- Start your application
- Assign a public URL
You can monitor the deployment progress in real-time through the deployment logs.
Step 4: Access Your Application
Once deployed, your application will be available at a URL like:
https://your-project.roundrobin.app
You can add custom domains in your project settings.
Next Steps
- Learn about the API to automate deployments
- Set up automatic deployments on Git push
- Add a database or object storage to your project
- Configure custom domains and SSL certificates