Skip to content

Commit e73e47f

Browse files
committed
updated installation pages
Signed-off-by: bidi <bidi@apidemia.com>
1 parent 3f38a0c commit e73e47f

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

docs/book/v7/installation/configuration-files.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Configuration Files
22

3+
> The installation script should have already created the files mentioned on this page.
4+
> We mention them explicitly because you will need to visit them to fully configure your development environment.
5+
36
## Prepare config files
47

58
* duplicate `config/autoload/cors.local.php.dist` as `config/autoload/cors.local.php`

docs/book/v7/installation/doctrine-orm.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ More details on how fixtures work can be found on [dot-data-fixtures documentati
114114

115115
### Prefixing table names
116116

117-
Note in the database configuration array the key called `table_prefix`.
118-
By default, it is an empty string, which means that all the tables will be named exactly the way they are configured in the entities.
117+
The database configuration array contains the key called `table_prefix`.
118+
By default, it is an empty string, which means that all the tables will use the names specified in their respective entities.
119119

120120
```text
121121
├─ admin
@@ -139,7 +139,7 @@ By default, it is an empty string, which means that all the tables will be named
139139
└─ user_roles
140140
```
141141

142-
Adding a prefix, for example `dot_`, all the table will be composed of the prefix and the original table name.
142+
By adding a prefix, for example `dot_`, all the table names will have the prefix appended to the table names specified in the entities.
143143

144144
```text
145145
├─ dot_admin
@@ -165,4 +165,4 @@ Adding a prefix, for example `dot_`, all the table will be composed of the prefi
165165

166166
> The configured prefix is prepended as is, no intermediary character will be added.
167167
168-
> `doctrine_migration_versions` is an exception, being a special table handled by Doctrine Migrations.
168+
> `doctrine_migration_versions` is an exception and will remain unchanged, since it's a special table handled only by Doctrine Migrations.

docs/book/v7/installation/test-the-installation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Test the installation
22

3+
> If you are getting server error 500, make sure to check the folder permissions covered in the [FAQ page](https://docs.dotkernel.org/api-documentation/v7/installation/faq/)
4+
35
Sending a GET request to the [home page](http://0.0.0.0:8080/) should output the following message:
46

57
```json

0 commit comments

Comments
 (0)