AeThex-Engine-Core/services/auth-service/.env
mrpiglr 190b6b2eab
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
chore: sync local changes to Forgejo
2026-03-13 00:37:06 -07:00

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=