30 lines
610 B
Bash
30 lines
610 B
Bash
# Environment variables for development
|
|
# Copy this file to .env and update with your values
|
|
|
|
# Database Configuration
|
|
DB_URL=jdbc:postgresql://localhost:5432/mtgsearch
|
|
DB_USER=postgres
|
|
DB_PASSWORD=postgres
|
|
DB_MAX_POOL_SIZE=10
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=your-secret-key-change-in-production
|
|
JWT_EXPIRATION=86400
|
|
|
|
# Application Configuration
|
|
APP_NAME=mtg-search
|
|
APP_VERSION=0.1.0
|
|
APP_ENVIRONMENT=development
|
|
|
|
# Server Configuration
|
|
SERVER_PORT=8080
|
|
SERVER_SERVLET_CONTEXT_PATH=/
|
|
|
|
# Frontend Configuration
|
|
VITE_API_URL=http://localhost:8080
|
|
VITE_APP_TITLE=MTG Search
|
|
|
|
# Logging
|
|
LOG_LEVEL=DEBUG
|
|
LOG_DIR=logs
|