V2.4.0 STABLE

Documentation

Everything you need to build, scale, and secure your cloud infrastructure with Astor.

search
storage

Connect your first DB

Configure environment variables and initialize your primary database cluster.

lock

Set up Auth

Enable OAuth, magic links, or custom identity providers in minutes.

Quick Start Guide

Astor is designed to be developer-first. You can get a production-ready environment running locally in less than 5 minutes. Use our official Node.js SDK to initialize your project.

index.js
import { Astor } from '@astor/sdk';

// Initialize the client
const astor = new Astor({
  apiKey: process.env.ASTOR_API_KEY,
  region: 'us-east-1'
});

async function bootstrap() {
  const db = await astor.connect('main-cluster');
  console.log('🚀 Connected to Astor infrastructure');
}

bootstrap();

Prerequisites

  • Node.js: Version 18.0.0 or higher is required.
  • Astor CLI: Recommended for managing remote environments.
  • API Key: Found in your dashboard under Settings > API Keys.

Was this page helpful?

Help us improve the Astor documentation.