Documentation

Everything you need to deploy, manage, and scale your applications on Arcline Cloud.

Getting Started

1

Create your account

Sign up at app.arcline.cloud and create your first project from the dashboard.

2

Install the CLI

Install the Arcline CLI to deploy directly from your terminal.

$ npm install -g @arcline/cli
$ arcline login
3

Deploy your app

Run a single command from your project directory to go live.

$ arcline deploy --prod
Detecting project... Next.js 15
Building application... done (12s)
✓ Deployed to production

API Reference

Authentication

All API requests require a Bearer token. Obtain one from your dashboard under Settings → API Keys.

$ curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.arcline.cloud/v1/projects

Projects

Create, list, update, and delete projects. Each project contains one or more services (apps, databases, workers).

GET /v1/projects   POST /v1/projects   DELETE /v1/projects/:id

Deployments

Trigger deployments, view build logs, roll back to previous versions, and manage environment variables.

POST /v1/projects/:id/deploy   GET /v1/deployments/:id/logs

Databases

Provision managed PostgreSQL instances, manage connection strings, and configure backups.

POST /v1/databases   GET /v1/databases/:id

CLI Reference

Core Commands

$ arcline login # Authenticate with your account
$ arcline init # Initialize a new project
$ arcline deploy # Deploy to staging
$ arcline deploy --prod # Deploy to production
$ arcline logs # Stream live logs
$ arcline rollback # Roll back to previous version

Database Commands

$ arcline db create --type postgres # Create a PostgreSQL instance
$ arcline db connect # Open a psql session
$ arcline db backup # Trigger a manual backup

Environment Variables

$ arcline env set DATABASE_URL="postgres://..."
$ arcline env list
$ arcline env rm SECRET_KEY