Files
aperonight/.env.example
kbe 1c7a62acde refactor: clean up controller before_action definitions and routes
- Standardize before_action syntax in controllers by removing extraneous spaces
- Comment out unused bundles routes in API v1 namespace
- Clean up whitespace in routes file

These changes improve code consistency and maintainability while preparing for future feature development.

💘 Generated with Crush
Co-Authored-By: Crush <crush@charm.land>
2025-08-24 22:31:42 +02:00

34 lines
871 B
Plaintext

# Application data
RAILS_ENV=development
SECRET_KEY_BASE=a3f5c6e7b8d9e0f1a2b3c4d5e6f7g8h9i0j1k2l3m4n5o6p7q8r9s0t1u2v3w4x5y6z7
DEVISE_SECRET_KEY=your_devise_secret_key_here
APP_NAME=Aperonight
# Database Configuration for production and development
DB_HOST=localhost
DB_ROOT_PASSWORD=root
DB_DATABASE=aperonight
DB_USERNAME=root
DB_PASSWORD=root
# Test database
DB_TEST_ADAPTER=sqlite3
DB_TEST_DATABASE=aperonight_test
DB_TEST_USERNAME=root
DB_TEST_USERNAME=root
# Mailer Configuration (for Devise and tests)
MAILER_DEFAULT_URL_OPTIONS=http://localhost:3000
# Test environment will use MailHog by default on 127.0.0.1:1025
SMTP_ADDRESS=127.0.0.1
SMTP_PORT=1025
# Optional auth (usually not required for MailHog)
# SMTP_USER_NAME=
# SMTP_PASSWORD=
# SMTP_DOMAIN=localhost
SMTP_AUTHENTICATION=plain
SMTP_ENABLE_STARTTLS=false
# Application variables
STRIPE_API_KEY=1337