-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (28 loc) · 816 Bytes
/
.env.example
File metadata and controls
36 lines (28 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Environment Configuration Template
# Copy this file to .env and fill in your values
# NEVER commit .env file to version control!
# Application Settings
APP_NAME=Image Processing Vision Project
APP_VERSION=1.0.0
DEBUG_MODE=false
# Server Configuration
STREAMLIT_SERVER_PORT=8501
STREAMLIT_SERVER_ADDRESS=localhost
# File Upload Settings
MAX_FILE_SIZE_MB=200
ALLOWED_FILE_TYPES=jpg,jpeg,png
# Image Processing Settings
DEFAULT_IMAGE_FORMAT=png
IMAGE_QUALITY=95
# Logging
LOG_LEVEL=INFO
LOG_FILE=logs/app.log
# Security (Example - add actual credentials if needed)
# API_KEY=your_api_key_here
# SECRET_KEY=your_secret_key_here
# Third-party Services (if applicable)
# CLOUD_STORAGE_BUCKET=your_bucket_name
# DATABASE_URL=your_database_connection_string
# Performance
CACHE_ENABLED=true
CACHE_TTL_SECONDS=3600