| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # Development Database Configuration
- DB_HOST=10.8.10.31
- DB_PORT=3306
- DB_NAME=inventory_db
- DB_USER=inventory_db
- DB_PASS=mDw(HF]Cub.UM2*7
- MYSQL_ROOT_PASSWORD=jotainaivanmuuta
- # Port Configuration
- BACKEND_PORT=8080
- FRONTEND_PORT=3000
- REDIS_PORT=6379
- # Company Information
- COMPANY_NAME=Wavium
- COMPANY_ADDRESS=Vaaranlaita 4 C 32
- COMPANY_CITY=Rovaniemi
- COMPANY_POSTAL_CODE=96440
- COMPANY_COUNTRY=Finland
- COMPANY_PHONE=+358 45 1110998
- COMPANY_EMAIL=weikka@wavium.fi
- COMPANY_Y_TUNNUS=3464619-2
- # File Upload Configuration
- UPLOAD_MAX_SIZE=10M
- ALLOWED_FILE_TYPES=pdf,doc,docx,xls,xlsx,jpg,jpeg,png,gif
- UPLOADS_PATH=./uploads
- # Frontend Configuration
- VUE_APP_API_URL=http://localhost:8080
- # Optional: Redis Configuration
- REDIS_HOST=localhost
- REDIS_PORT=6379
- # Optional: Email Configuration (for future use)
- MAIL_HOST=smtp.gmail.com
- MAIL_PORT=587
- MAIL_USERNAME=svalavuo@gmail.com
- MAIL_PASSWORD=
- MAIL_ENCRYPTION=tls
|