Some checks are pending
Build AeThex Engine / build-windows (push) Waiting to run
Build AeThex Engine / build-linux (push) Waiting to run
Build AeThex Engine / build-macos (push) Waiting to run
Build AeThex Engine / create-release (push) Blocked by required conditions
Deploy Docsify Documentation / build (push) Waiting to run
Deploy Docsify Documentation / deploy (push) Blocked by required conditions
39 lines
883 B
Bash
39 lines
883 B
Bash
# AeThex Development Environment
|
|
# https://aethex.dev
|
|
|
|
# This file contains the local development environment configuration
|
|
# Copy this to .env for local development
|
|
|
|
# Server Configuration
|
|
NODE_ENV=development
|
|
PORT=3001
|
|
|
|
# Database - PostgreSQL (run with Docker or local install)
|
|
DATABASE_URL="postgresql://aethex:aethex_dev@localhost:5432/aethex_dev"
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=aethex-dev-secret-change-in-production
|
|
JWT_EXPIRES_IN=7d
|
|
REFRESH_TOKEN_SECRET=aethex-refresh-secret-change-in-prod
|
|
|
|
# OAuth Providers (optional for development)
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
GITHUB_CLIENT_ID=
|
|
GITHUB_CLIENT_SECRET=
|
|
|
|
# Frontend URL
|
|
FRONTEND_URL=http://localhost:3001
|
|
|
|
# C++ Launcher connects to this
|
|
API_BASE_URL=http://localhost:3001
|
|
|
|
# Rate Limiting
|
|
RATE_LIMIT_WINDOW_MS=900000
|
|
RATE_LIMIT_MAX_REQUESTS=1000
|
|
|
|
# Email (optional)
|
|
SMTP_HOST=
|
|
SMTP_PORT=
|
|
SMTP_USER=
|
|
SMTP_PASS=
|