.env.with-services 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Database Configuration (for docker-compose-with-services.yml)
  2. DB_HOST=mariadb
  3. DB_PORT=3306
  4. DB_NAME=inventory_db
  5. DB_USER=inventory_user
  6. DB_PASS=inventory_password
  7. MYSQL_ROOT_PASSWORD=root_password
  8. # Redis Configuration
  9. REDIS_HOST=redis
  10. REDIS_PORT=6379
  11. REDIS_PASSWORD=redis_password
  12. # Frontend Configuration
  13. FRONTEND_PORT=80
  14. # Company Information
  15. COMPANY_NAME=Inventory Management
  16. COMPANY_ADDRESS=123 Business St
  17. COMPANY_CITY=Helsinki
  18. COMPANY_POSTAL_CODE=00100
  19. COMPANY_COUNTRY=Finland
  20. COMPANY_PHONE=+358 123 456 789
  21. COMPANY_EMAIL=info@company.com
  22. COMPANY_Y_TUNNUS=1234567-8
  23. # File Upload Configuration
  24. UPLOAD_MAX_SIZE=10M
  25. ALLOWED_FILE_TYPES=pdf,doc,docx,xls,xlsx,jpg,jpeg,png,gif
  26. UPLOADS_PATH=./uploads
  27. # MariaDB Port (optional, for external access)
  28. MARIADB_PORT=3306
  29. # Redis Port (optional, for external access)
  30. REDIS_PORT=6379
  31. # Volumes in local filesystem
  32. APP_LOCATION=./
  33. DB_LOCATION=./
  34. REDIS_LOCATION=./