- Update .gitignore to exclude sensitive files and helper docs - Create .env.example with placeholder values for setup - Ensure .env with secrets remains untracked 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
335 B
Plaintext
15 lines
335 B
Plaintext
# Oracle Database Configuration
|
|
ORACLE_USER=YOUR_ORACLE_USERNAME
|
|
ORACLE_PASSWORD=YOUR_ORACLE_PASSWORD
|
|
ORACLE_DSN=YOUR_TNS_CONNECTION_NAME
|
|
TNS_ADMIN=/app
|
|
INSTANTCLIENTPATH=/opt/oracle/instantclient_21_1
|
|
|
|
# Flask Configuration
|
|
FLASK_ENV=development
|
|
FLASK_DEBUG=1
|
|
PYTHONUNBUFFERED=1
|
|
|
|
# Application Settings
|
|
APP_PORT=5000
|
|
LOG_LEVEL=DEBUG |