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
And make sure your local PHP environment is configured with php-intl, php-redis, php-gd extensions.
50
+
You will need to use at least *MySQL* and *Redis* (and *Solr* if needed) services from Docker stack in order to run your application.
51
+
52
+
```shell
53
+
docker compose -f docker-compose.symfony.yml up -d
54
+
```
55
+
56
+
- Configure your `.env.local` variables to use your local MySQL and Redis services. Replacing `db`, `redis`, `mailer` and `solr` hostnames with `127.0.0.1`. Make sure to use `127.0.0.1` and not `localhost` on *macOS* as it will not work with Docker.
57
+
- Remove `docker compose exec -u www-data app ` prefix from all commands in `Makefile` to execute recipes locally.
58
+
- Remove cache invalidation Varnish configuration from `config/packages/api_platform.yaml` and `config/packages/roadiz_core.yaml` file.
59
+
60
+
Then you can start your local webserver:
61
+
62
+
```shell
63
+
symfony serve -d
64
+
```
65
+
66
+
Perform all installation steps described above, without using `docker compose exec` command.
67
+
68
+
Then your Roadiz backoffice will be available at `https://127.0.0.1:8000/rz-admin`
And make sure your local PHP environment is configured with php-intl, php-redis, php-gd extensions.
217
-
You will need to use at least *MySQL* and *Redis* (and *Solr* if needed) services from Docker stack in order to run your application.
218
-
219
-
```shell
220
-
docker compose -f docker-compose.symfony.yml up -d
221
-
```
222
-
223
-
- Configure your `.env` variables to use your local MySQL and Redis services. Replacing `db`, `redis`, `mailer` and `solr` hostnames with `127.0.0.1`. Make sure to use `127.0.0.1` and not `localhost` on *macOS* as it will not work with Docker.
224
-
- Remove `docker compose exec -u www-data app ` prefix from all commands in `Makefile` to execute recipes locally.
225
-
- Remove cache invalidation Varnish configuration from `config/packages/api_platform.yaml` and `config/packages/roadiz_core.yaml` file.
226
-
227
-
Then you can start your local webserver:
228
-
229
-
```shell
230
-
symfony server:start
231
-
```
232
-
233
-
Perform all installation steps described above, without using `docker compose exec` command.
234
-
235
-
Then your Roadiz backoffice will be available at `https://127.0.0.1:8000/rz-admin`
234
+
Sensitive and local data must be filled in `.env.local` which is git-ignored.
236
235
237
236
### Make node-types editable on production environment
0 commit comments