chore: remove sensitive configuration file .env

This commit is contained in:
Dmitriy Kazimirov 2025-04-01 11:23:25 +00:00
parent ad43b39543
commit a78ebd3db2

60
.env
View file

@ -1,60 +0,0 @@
# Application Configuration
# ========================
# Base URL for the application (required, string)
# Format: http://hostname:port or https://hostname:port
BASE_URL=http://localhost:8000
# CPU Limit for container (optional, float)
# Number of CPU cores to allocate (e.g., 0.5, 1, 2)
# Default: 2 (will be used if not specified)
CPU_LIMIT=2
# Snippet character limit (optional, integer)
# Maximum length for text snippets in characters
# Default: 100
SNIPPET_CHAR_LIMIT=100
# Debug mode (optional, boolean)
# Enable debug output when set to True
# Default: False
DEBUG=False
# Application port (optional, integer)
# Port the application listens on
# Default: 5000
PORT=5000
# Elasticsearch Configuration
# ==========================
# Elasticsearch host (required, string)
# Hostname or IP of Elasticsearch service
ELASTICSEARCH_HOST=elasticsearch
# Elasticsearch username (sensitive, required, string)
# Admin username for Elasticsearch
ELASTICSEARCH_USERNAME=admin
# Elasticsearch password (sensitive, required, string)
# Admin password for Elasticsearch
ELASTICSEARCH_PASSWORD=password
# File Storage Configuration
# =========================
# SMB share path (optional, string)
# Local path where books are mounted
# Default: ./smb_share
SMB_SHARE_PATH=./smb_share
# Admin Credentials
# ================
# Admin username for API management (required, string)
ADMIN_USER=admin
# Admin password for API management (required, string)
ADMIN_PASSWORD=securepassword123