Quick Start Guide

Step-by-step instructions for deploying your first API and getting started with Orbital7.

Overview

This guide will help you:

Getting Started

1. Install Orbital7 CLI

First, install the Command Line Interface package from our repository.

npm install -g orbital7-cli

Or use our package manger for Windows/macOS: orbital7.setup

2. Create New Project

Generate a new project scaffold using our starter templates.

orbital7 init my-new-api

PRO TIP: Choose from 8+ templates including REST API boilerplates, GraphQL starters, and function-as-a-service blueprints!

3. Configure and Deploy

Add your API configuration details and deploy to production with one command.

config.yaml
server: port: 3000 authentication: type: jwt secret: mysecretpassword123 deployment: target: production
cd my-new-api

orbital7 deploy

DEPLOY COMPLETE: Your API is now live at https://api.example.com

4. Access Analytics

Monitor traffic patterns, latency metrics, and errors from our dashboard.

Open Dashboard