You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ Choosing to inject any extra ConfigProvider would cause having duplicates which
63
63
64
64
>**Do not enable development mode in production!**
65
65
66
-
If you're installing the project for development, you should **enable** development mode, by running:
66
+
If you're installing the project for development, you should **enable** development mode by running:
67
67
68
68
```shell
69
69
composer development-enable
@@ -75,15 +75,15 @@ You can **disable** development mode by running:
75
75
composer development-disable
76
76
```
77
77
78
-
You can **check** development status by running:
78
+
You can **check** the development status by running:
79
79
80
80
```shell
81
81
composer development-status
82
82
```
83
83
84
84
### Prepare config files
85
85
86
-
* **optional**: in order to run/create tests, duplicate `config/autoload/local.test.php.dist` as `config/autoload/local.test.php` <- this creates a new in-memory database that your tests will run on
86
+
* **optional**: to run/create tests, duplicate `config/autoload/local.test.php.dist` as `config/autoload/local.test.php` <- this creates a new in-memory database that your tests will run on
87
87
88
88
### Setup database
89
89
@@ -134,13 +134,13 @@ More details on how fixtures work can be found in `dotkernel/dot-data-fixtures`
134
134
135
135
### Mail configuration
136
136
137
-
If your application will send emails, you must configure an outgoing mail server under `config/autoload/mail.global.php`.
137
+
If your application sends emails, you must configure an outgoing mail server under `config/autoload/mail.global.php`.
138
138
139
139
### Sync GeoLite2 databases
140
140
141
141
#### Full sync
142
142
143
-
You can download/update all GeoLite2 databases at once, by running the following command:
143
+
You can download/update all GeoLite2 databases at once by running the following command:
You can download/update a specific GeoLite2 database, by running the following command:
159
+
You can download/update a specific GeoLite2 database by running the following command:
160
160
161
161
```shell
162
162
php ./bin/cli.php geoip:synchronize -d <database>
@@ -197,7 +197,7 @@ npm run prod
197
197
198
198
### Test the installation
199
199
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`, `public/uploads` and `log` folders:
200
+
If you are using virtual hosts as described in the [Dotkernel documentation] (https://docs.dotkernel.org/development/), you need to modify the permissions of the `data`, `public/uploads` and `log` folders:
201
201
202
202
```shell
203
203
chmod -R 777 data
@@ -224,8 +224,8 @@ Open a web browser and visit `http://localhost:8080/`.
224
224
You should see the **Dotkernel Admin** login page.
225
225
If you ran the migrations you will have an admin user in the database with the following credentials:
0 commit comments