Skip to content

Commit f9d8b1e

Browse files
committed
docs: update remaining 'framework' references to 'workspace' in documentation
1 parent 7178d03 commit f9d8b1e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ With this setup, you'll have a powerful debugging environment that helps you ide
282282
│ └── mysql/ # MySQL initialization scripts
283283
├── etc/ # Configuration files
284284
│ ├── nginx/ # Nginx configuration
285-
│ │ └── framework/ # Framework-specific configs
285+
│ │ └── workspace/ # Workspace-specific configs
286286
│ ├── php/ # PHP configuration
287287
│ └── ssl/ # SSL certificates
288288
├── web/ # Web root directory
@@ -424,14 +424,14 @@ make restart
424424

425425
If you want to use a framework that's not included in the predefined list, you can add support for it by following these steps:
426426

427-
1. **Create a framework configuration file** for Nginx:
427+
1. **Create a workspace configuration file** for Nginx:
428428

429429
```bash
430-
# Create a new configuration file in the framework directory
431-
touch etc/nginx/framework/yourframework.conf
430+
# Create a new configuration file in the workspace directory
431+
touch etc/nginx/workspace/yourworkspace.conf
432432
```
433433

434-
2. **Add the specific Nginx rules** for your framework. For example:
434+
2. **Add the specific Nginx rules** for your workspace. For example:
435435

436436
```nginx
437437
# CakePHP configuration example
@@ -449,14 +449,14 @@ location ~ ^/(config|tmp|logs) {
449449
3. **Install your framework** using Composer:
450450

451451
```bash
452-
docker-compose exec php bash -c "cd /var/www/html && composer create-project your/framework yourframework-app"
452+
docker-compose exec php bash -c "cd /var/www/html && composer create-project your/framework yourworkspace-app"
453453
```
454454

455-
4. **Update your `.env` file** to use the new framework:
455+
4. **Update your `.env` file** to use the new workspace:
456456

457457
```
458-
APP_WORKSPACE=yourframework
459-
APP_PUBLIC_DIR=yourframework-app/public
458+
APP_WORKSPACE=yourworkspace
459+
APP_PUBLIC_DIR=yourworkspace-app/public
460460
```
461461

462462
5. **Restart the containers** to apply the changes:
@@ -465,11 +465,11 @@ APP_PUBLIC_DIR=yourframework-app/public
465465
make restart
466466
```
467467

468-
By following these steps, you can extend the environment to support virtually any PHP framework or custom application structure.
468+
By following these steps, you can extend the environment to support virtually any PHP workspace or custom application structure.
469469

470470
### Important Note
471471

472-
If you switch between environments using `make dev` or `make prod`, you'll need to reconfigure your framework-specific variables in your `.env` file, as these commands replace the entire file.
472+
If you switch between environments using `make dev` or `make prod`, you'll need to reconfigure your workspace-specific variables in your `.env` file, as these commands replace the entire file.
473473

474474
## 📊 Database Connection
475475

@@ -513,7 +513,7 @@ To customize PHP settings, edit the `etc/php/php.ini` file.
513513

514514
The Nginx configuration uses a template system with environment variables. Edit `etc/nginx/default.template.conf` to customize the server configuration.
515515

516-
Framework-specific configurations are stored in `etc/nginx/framework/` directory.
516+
Framework-specific configurations are stored in `etc/nginx/workspace/` directory.
517517

518518
### Network Architecture
519519

0 commit comments

Comments
 (0)