Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf9d8b1e

Browse files
committed
docs: update remaining 'framework' references to 'workspace' in documentation
1 parent7178d03 commitf9d8b1e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

‎README.md‎

Lines changed: 12 additions & 12 deletions
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 aframework configuration file** for Nginx:
427+
1.**Create aworkspace configuration file** for Nginx:
428428

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

434-
2.**Add the specific Nginx rules** for yourframework. For example:
434+
2.**Add the specific Nginx rules** for yourworkspace. 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-composeexec php bash -c"cd /var/www/html && composer create-project your/frameworkyourframework-app"
452+
docker-composeexec php bash -c"cd /var/www/html && composer create-project your/frameworkyourworkspace-app"
453453
```
454454

455-
4.**Update your`.env` file** to use the newframework:
455+
4.**Update your`.env` file** to use the newworkspace:
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 PHPframework or custom application structure.
468+
By following these steps, you can extend the environment to support virtually any PHPworkspace 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 yourframework-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 yourworkspace-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)

[8]ページ先頭

©2009-2025 Movatter.jp