.env.example 900 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Database Configuration (External Database)
  2. DB_HOST=your-external-db-host
  3. DB_PORT=3306
  4. DB_NAME=inventory_db
  5. DB_USER=your-db-username
  6. DB_PASS=your-db-password
  7. # Port Configuration
  8. APP_PORT=80
  9. REDIS_PORT=6379
  10. # Company Information
  11. COMPANY_NAME=Your Company Name
  12. COMPANY_ADDRESS=123 Business Street
  13. COMPANY_CITY=Helsinki
  14. COMPANY_POSTAL_CODE=00100
  15. COMPANY_COUNTRY=Finland
  16. COMPANY_PHONE=+358 123 456 789
  17. COMPANY_EMAIL=info@yourcompany.com
  18. COMPANY_Y_TUNNUS=1234567-8
  19. # File Upload Configuration
  20. UPLOAD_MAX_SIZE=10M
  21. ALLOWED_FILE_TYPES=pdf,doc,docx,xls,xlsx,jpg,jpeg,png,gif
  22. UPLOADS_PATH=./uploads
  23. # Frontend Configuration
  24. VUE_APP_API_URL=http://localhost:8080
  25. # Optional: Redis Configuration
  26. REDIS_HOST=redis
  27. REDIS_PORT=6379
  28. # Optional: Email Configuration (for future use)
  29. MAIL_HOST=smtp.gmail.com
  30. MAIL_PORT=587
  31. MAIL_USERNAME=your-email@gmail.com
  32. MAIL_PASSWORD=your-app-password
  33. MAIL_ENCRYPTION=tls