Skip to content

Commit b2c4025

Browse files
committed
Update environment variables table in README
This commit updates the environment variables table in the README to reflect the recent changes to our configuration: - Replace APP_DIRECTORY with the new APP_DIR variable - Update APP_PUBLIC_DIR description to indicate it's auto-generated from APP_DIR - Remove SYMFONY_DIR and LARAVEL_DIR variables as frameworks are now installed with configurable directories using APP_DIR - Add new MailHog-related variables for email testing configuration - Clarify which variables are only available in development environment - Improve descriptions for better clarity These changes ensure the documentation accurately represents the current environment configuration options and helps users understand how the variables interact with each other.
1 parent 2818ad4 commit b2c4025

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

README.md

+15-13
Original file line numberDiff line numberDiff line change
@@ -122,19 +122,21 @@ You can customize the environments by editing:
122122

123123
Common configuration options:
124124

125-
| Variable | Description | Default (Dev) | Default (Prod) |
126-
|--------------------|------------------------------------|------------------|------------------|
127-
| PHP_VERSION | PHP version to use | 8.3 | 8.3 |
128-
| PHP_TARGET | PHP image target | dev | base |
129-
| MYSQL_VERSION | MySQL version | 9.2 | 9.2 |
130-
| PHP_DISPLAY_ERRORS | Show PHP errors | 1 | 0 |
131-
| PHP_MEMORY_LIMIT | PHP memory limit | 256M | 128M |
132-
| XDEBUG_ENABLED | Enable Xdebug | 1 | 0 |
133-
| APP_WORKSPACE | Workspace type | default | default |
134-
| APP_PUBLIC_DIR | Public directory | public | public |
135-
| SYMFONY_DIR | Symfony install directory | symfony-app | symfony-app |
136-
| LARAVEL_DIR | Laravel install directory | laravel-app | laravel-app |
137-
| PROJECT_NAME | Project name for Docker volumes | docker_nginx_php_mysql | docker_nginx_php_mysql |
125+
| Variable | Description | Default (Dev) | Default (Prod) |
126+
|------------------------|---------------------------------------|----------------------|----------------------|
127+
| PHP_VERSION | PHP version to use | 8.3 | 8.3 |
128+
| PHP_TARGET | PHP image target | dev | base |
129+
| MYSQL_VERSION | MySQL version | 9.2 | 9.2 |
130+
| PHP_DISPLAY_ERRORS | Show PHP errors | 1 | 0 |
131+
| PHP_MEMORY_LIMIT | PHP memory limit | 256M | 128M |
132+
| XDEBUG_ENABLED | Enable Xdebug | 1 | 0 |
133+
| APP_WORKSPACE | Workspace type | default | default |
134+
| APP_DIR | Application directory | app | app |
135+
| APP_PUBLIC_DIR | Public directory (auto-generated) | app/public | app/public |
136+
| PROJECT_NAME | Project name for Docker volumes | docker_nginx_php_mysql | docker_nginx_php_mysql |
137+
| MAILHOG_SMTP_PORT | MailHog SMTP port | 1025 | - |
138+
| MAILHOG_UI_PORT | MailHog web interface port | 8025 | - |
139+
| MAILHOG_STORAGE | MailHog storage mode | memory | - |
138140

139141
## 🔍 Debugging with Xdebug
140142

0 commit comments

Comments
 (0)