GA
Global API
DocsGet Started
← Back to Blog
Tutorial2026-04-05

One-API Setup Guide: From Zero to Production

One-API Setup Guide: From Zero to Production

One-API is the open-source gateway that powers Global API. Here's how to deploy it...

Prerequisites

  • A Linux server (Ubuntu 20.04+)
  • Docker installed
  • API keys from model providers
  • Quick Setup

    docker run -d -p 3000:3000 \

    -e OPENAI_API_KEY=your-key \

    justsong/one-api

    Production Considerations

  • Use Redis for session storage
  • Set up Nginx reverse proxy
  • Configure rate limiting
  • Get Started with Global API →