# Environment: "development" or "production"
APP_ENV=development

# Secret key for JWT and session signing (change in production!)
SECRET_KEY=change-this-to-a-random-secret-key-in-production

# Database URL
# SQLite for development:
DATABASE_URL=sqlite:///./scholarnet.db
# MySQL for production:
# DATABASE_URL=mysql+mysqldb://user:password@localhost/scholarnet

# Upload directory
UPLOAD_DIR=./uploads

# JWT settings
ACCESS_TOKEN_EXPIRE_MINUTES=1440

# App settings
APP_NAME=ScholarNet
APP_DESCRIPTION=Discover scientific knowledge and stay connected to the world of science
APP_URL=http://localhost:8000

# Email verification domain allowlist (comma-separated, e.g. .edu,.ac.uk)
VERIFIED_EMAIL_DOMAINS=.edu,.ac.uk,.edu.au,.ac.in,.edu.cn,.ac.jp,.edu.br
