wearwell/.env.example

18 lines
316 B
Bash

# Copy this file to .env and update with your values
# Security
SECRET_KEY=change-this-to-a-random-secret-key
FLASK_ENV=development
FLASK_DEBUG=True
# Database
DB_HOST=localhost
DB_USER=wearwell_user
DB_PASSWORD=your_password_here
DB_NAME=wearwell_db
DB_PORT=3306
# Application
FLASK_PORT=5001
FLASK_HOST=0.0.0.0