Skip to main content
Deploy and configure 2501 on your infrastructure using the 2501-infra CLI.

Prerequisites

AWS CLI

Install and configure the AWS CLI with credentials provided by your Account Executive at 2501:
aws configure
# AWS Access Key ID: <contact your Account Executive at 2501>
# AWS Secret Access Key: <contact your Account Executive at 2501>
# Default region: eu-west-3
# Default output format: json

Docker

Docker must be installed and running. Authenticate with the 2501 ECR registry:
aws ecr get-login-password --region eu-west-3 | docker login --username AWS --password-stdin 605134458542.dkr.ecr.eu-west-3.amazonaws.com

Install the CLI

curl https://gist.githubusercontent.com/cgestes/450d96c7ae09bc2c94887aaa1f675962/raw/setup.sh | bash
Keep it up to date:
2501-infra self-update

Quick Start

# 1. Initialize configuration
2501-infra init -t swarm --no-postgres

# 2. Edit configuration files
# 3. Deploy
2501-infra deploy

Getting Help

The CLI includes built-in documentation for all commands:
# List all commands
2501-infra -h

# Help for specific commands
2501-infra init -h
2501-infra deploy -h
2501-infra tenant -h
2501-infra org -h
2501-infra user -h

Deployment Workflow

  1. Install the 2501-infra CLI
  2. Initialize configuration with 2501-infra init
  3. Configure your environment files (generated with inline documentation)
  4. Deploy with 2501-infra deploy
  5. Create entities - the CLI prompts you interactively (skipped with --yes)
  6. Access the Command Center UI

What’s Next