Step-by-step instructions for deploying your first API and getting started with Orbital7.
This guide will help you:
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
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!
Add your API configuration details and deploy to production with one command.
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
Monitor traffic patterns, latency metrics, and errors from our dashboard.
Open Dashboard