This commit is contained in:
2026-04-27 22:36:44 +09:30
parent 86b6d6c0b9
commit 2d03f3a7f4
58 changed files with 4376 additions and 62 deletions
+29
View File
@@ -0,0 +1,29 @@
# 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