.env.example 925 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. BACKEND_PORT=8080
  9. FRONTEND_PORT=3000
  10. REDIS_PORT=6379
  11. # Company Information
  12. COMPANY_NAME=Your Company Name
  13. COMPANY_ADDRESS=123 Business Street
  14. COMPANY_CITY=Helsinki
  15. COMPANY_POSTAL_CODE=00100
  16. COMPANY_COUNTRY=Finland
  17. COMPANY_PHONE=+358 123 456 789
  18. COMPANY_EMAIL=info@yourcompany.com
  19. COMPANY_Y_TUNNUS=1234567-8
  20. # File Upload Configuration
  21. UPLOAD_MAX_SIZE=10M
  22. ALLOWED_FILE_TYPES=pdf,doc,docx,xls,xlsx,jpg,jpeg,png,gif
  23. UPLOADS_PATH=./uploads
  24. # Frontend Configuration
  25. VUE_APP_API_URL=http://localhost:8080
  26. # Optional: Redis Configuration
  27. REDIS_HOST=redis
  28. REDIS_PORT=6379
  29. # Optional: Email Configuration (for future use)
  30. MAIL_HOST=smtp.gmail.com
  31. MAIL_PORT=587
  32. MAIL_USERNAME=your-email@gmail.com
  33. MAIL_PASSWORD=your-app-password
  34. MAIL_ENCRYPTION=tls