You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor environment variables and port configuration
This commit enhances the flexibility and organization of the environment:
1. Add port customization for all services:
- Allow configuration of all service ports through environment variables
- Provide sensible defaults to prevent conflicts
- Enable running multiple instances of the project simultaneously
2. Replace PHP runtime configuration with INI file selection:
- Add PHP_INI variable to select the appropriate configuration file
- Remove redundant PHP_DISPLAY_ERRORS, PHP_MEMORY_LIMIT variables
- Simplify configuration management by centralizing settings in INI files
3. Improve variable organization in .env files:
- Group related variables together
- Rename APP_NAME for better clarity (was PROJECT_NAME)
- Standardize variable naming conventions
These changes improve the maintainability, flexibility, and clarity of the
environment configuration while reducing duplication and potential inconsistencies.
0 commit comments