ZuploZuplo
LoginSign Up
  • Documentation
  • API Reference
Introduction
Getting Started
    Develop using the Portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingMCP - Quick start
    Develop Locally
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth
Concepts
Development
Policies
Handlers
API Keys
MCP Server
MCP Gateway
AI Gateway
Developer Portal
Monetization
Deploying & Source Control
    Overview
    GitHub
    GitLab
      SetupBasic DeploymentDeploy and TestMR Preview EnvironmentsLocal Testing in CITag-Based ReleasesMulti-Stage Deployment
    Bitbucket
    Azure DevOps
    CircleCI
    Custom CI/CDMonorepo DeploymentRename/Move Project
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsSecuritySupportTrust & ComplianceChangelog
powered by Zudoku
GitLab

GitLab CI/CD: Basic Deployment

The simplest pipeline deploys your API to Zuplo on every push to main.

.gitlab-ci.yml
image: node:20 stages: - deploy deploy: stage: deploy script: - npm install - npx zuplo deploy --api-key "$ZUPLO_API_KEY" only: - main

Store ZUPLO_API_KEY in Settings > CI/CD > Variables.

Next Steps

  • Add automated testing after deployment
  • Set up MR preview environments
Edit this page
Last modified on December 3, 2025
SetupDeploy and Test
On this page
  • Next Steps
YAML