Installation Guides

Step-by-step instructions to set up and configure our platform, libraries, and tools.

🔧 CLI Installation

Install via Terminal

Use our command line interface to quickly install core tools and dependencies.


# Linux/macOS
curl -fsSL https://elagwog.com/install-cli.sh | sh

# Windows (PowerShell)
iex (New-Object Net.WebClient).DownloadString('https://elagwog.com/win-setup.ps1')

Verify Installation


elagwog-cli --version
# Expected output: v1.0.0

🐳 Containerized Deployment

Run With Docker

Deploy our services using official Docker images and container orchestration tools.


docker run -d -p 8080:80 \
  --name elagwog \
  elagwog/enterprise:latest

Docker Compose

Use this configuration to deploy multi-container applications with ease.


version: '3'
services:
  elagwog:
    image: elagwog/enterprise
    ports:
      - "8080:80"
    environment:
      - LOG_LEVEL=debug

⚙️ Configuration

API Configuration

Edit the configuration file to set up API keys and service endpoints.


// config.js
module.exports = {
  apiKey: 'YOUR_API_KEY',
  baseUrl: process.env.ELA_API_URL || 'https://api.elagwog.com/v1'
};