egeg...

Documentation

Getting Started

Welcome to the egegapasga... documentation. Here you'll find everything you need to start using our service.

// Example usage
import { core } from '@egegapasga/core'

const config = {
    id: 'your-project-id',
    secret: 'your-read-only-key'
}

core.init(config)
    .then(() => console.log('✅ Initialized'))
    .catch(err => console.error('❌', err))

Installation

NPM

npm install @egegapasga/cli

Run with $ egegapasga init

Docker

docker run -p 3000:3000 egegapasga/cli

The API will be available at http://localhost:3000/api

Configuration

The configuration file can be created in your project root.

{
  "projectId": "dev-12345",
  "env": "development",
  "features": {
    "analytics": true,
    "notifications": true
  }
}