Skip to content

Commit 3fc306b

Browse files
committed
Issue #349: test readme.md to be updated
Signed-off-by: horea <horea@rospace.com>
1 parent c702fba commit 3fc306b

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,18 @@ git clone https://github.com/dotkernel/admin.git .
4545
composer install
4646
```
4747

48-
You will get a prompt like this:
48+
You will be prompted with the below message to choose whether you want to inject ConfigProviders:
4949
```shell
5050
Please select which config file you wish to inject 'Laminas\Validator\ConfigProvider' into:
5151
[0] Do not inject
5252
[1] config/config.php
5353
Make your selection (default is 1):
5454
```
5555
56-
Type 0 to select **[0] Do not inject**.
57-
No other Config Providers need to be injected.
56+
Type `0` to select **[0] Do not inject** and hit `Enter`.
5857
59-
We choose 0 because Dotkernel includes its own ConfigProvider which already contains the prompted configurations.
60-
If you choose **[1] config/config.php**, an extra ConfigProvider will be injected.
58+
We choose not to inject any ConfigProvider because Dotkernel Admin comes with all the required ConfigProviders already injected in `config/config.php`.
59+
Choosing to inject any extra ConfigProvider would cause having duplicates which are not allowed and would crash the application.
6160
6261
### Development mode
6362
@@ -197,12 +196,13 @@ npm run prod
197196
198197
### Test the installation
199198
200-
If you are using virtual hosts as described in the [Dotkernel documentation] (https://docs.dotkernel.org/development/) you need you modify the permissions of the **data** and **log** folders:
199+
If you are using virtual hosts as described in the [Dotkernel documentation] (https://docs.dotkernel.org/development/) you need you modify the permissions of the `data`, `public/uploads` and `log` folders:
201200
202201
```shell
203-
chmod 777 data/
204-
chmod 777 log/
205-
chmod 777 data/cache/
202+
chmod -R 777 data
203+
chmod -R 777 public/uploads
204+
chmod -R 777 log
205+
chmod -R 777 data/cache
206206
```
207207
208208
Run the following command in your project's directory to start PHPs built-in server:

0 commit comments

Comments
 (0)