Quick Start Guide

Get up and running with our platform in minutes. Follow these simple steps to begin your project.

🛠️ Getting Started

Install CLI Tool

Use our command-line interface to bootstrap your project quickly.


npm install -g @elagwog/cli
elagwog init my-project
cd my-project

Start Development Server

Launch a local development environment with hot reloading.


npm start
# Or use your platform's dev command

⚙️ Configuration

Environment Variables

Create a .env file in the root directory with your configuration:


API_KEY=your_api_key_here
DEBUG=true
PORT=3000

API Integration

Configure your API client to connect to the Elağwog services.


// config/api.js
export const API = {
  baseUrl: process.env.API_URL || 'https://api.elagwog.com',
  headers: {
    'Authorization': `Bearer ${process.env.API_KEY}`
  }
};

Build & Deploy

Package your application for production deployment using the CLI.


npm run build
elagwog deploy --env production