Skip to main content

Project Beta Setup

Follow this guide to set up Project Beta in your environment.

Prerequisites

  • Node.js 20.0 or higher
  • Docker (optional, for containerized deployments)
  • Git installed

Installation

Step 1: Install Package

npm install project-beta

Step 2: Create Configuration

Create beta.config.js:

module.exports = {
apiKey: process.env.BETA_API_KEY,
region: 'us-east-1',
environment: 'production'
};

Step 3: Run Setup Wizard

npx project-beta setup

Configuration

Environment Variables

BETA_API_KEY=your_api_key
BETA_REGION=us-east-1
BETA_ENV=production

Configuration File

{
"deployment": {
"strategy": "blue-green",
"autoRollback": true
},
"monitoring": {
"enabled": true,
"alertThreshold": 0.95
}
}

Verification

Test your setup:

npx project-beta test

Expected output:

✓ Configuration valid
✓ API connection successful
✓ Deployment pipeline ready

Troubleshooting

Common Issues

Issue: Docker not found

  • Solution: Install Docker or disable containerized deployments

Issue: API key invalid

  • Solution: Verify your API key in the dashboard

Next Steps