Skip to content
On this page

Multi-Environment Setup

This directory contains environment-specific configurations for:

  • Development - Local development environment
  • Staging - Testing and integration environment
  • Production - Live production environment (high volume)
  • Production2 - Secondary production environment (if configured)

Directory Structure

environments/
├── development/          # Local development
├── staging/             # Staging/sandbox environment
├── production/          # Production environment
├── production2/         # Secondary production environment
└── shared/              # Shared configurations

Quick Start

Development

bash
cd environments/development
docker-compose up -d

Staging

bash
cd environments/staging
docker-compose up -d
# OR for cPanel/WHM
pm2 start ecosystem.config.js

Production

bash
cd environments/production
docker-compose up -d
# OR for cPanel/WHM
pm2 start ecosystem.config.js

Production2

bash
cd environments/production2
docker-compose up -d
# OR for cPanel/WHM
pm2 start ecosystem.config.js

Environment URLs

Documentation

Salesforce Middleware Platform Documentation