- Implemented OrdersRepository for handling order data with pagination, filtering, and sorting capabilities. - Added methods for retrieving order status options, quick stats, and detailed order information. - Created OrderStatusRepository for managing order status groups and statuses, including CRUD operations and sorting. - Introduced a bootstrap file for test environment setup and autoloading.
19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
APP_NAME=orderPRO
|
|
APP_ENV=local
|
|
APP_DEBUG=true
|
|
APP_URL=http://localhost:8000
|
|
SESSION_NAME=orderpro_session
|
|
INTEGRATIONS_SECRET=change-me-long-random-secret
|
|
CRON_RUN_ON_WEB=false
|
|
CRON_WEB_LIMIT=5
|
|
|
|
DB_CONNECTION=mysql
|
|
DB_HOST=127.0.0.1
|
|
# Tylko techniczne operacje agenta (np. reczne migracje), nie dla runtime aplikacji.
|
|
DB_HOST_REMOTE=
|
|
DB_PORT=3306
|
|
DB_DATABASE=orderpro
|
|
DB_USERNAME=root
|
|
DB_PASSWORD=
|
|
DB_CHARSET=utf8mb4
|