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
Generate a default `.env` file, which contains configuration settings for the project.
91
116
92
117
```bash
93
118
make env
94
119
```
95
120
96
-
Edit the created `.env` file if necessary. You may want to change the default domain.
121
+
Open this file and read the notes inside to make any necessary changes to fit your setup.
122
+
123
+
6.**Install root certificate** and generate default project certs:
124
+
125
+
This step installs the root certificate into your system's trust store and generates default SSL certificates for your local domains, which are listed in the `.env` file, under variable `TLS_DOMAINS`.
126
+
127
+
```bash
128
+
make cert-install
129
+
```
130
+
131
+
Currently, on macOS you may need to enter password several times to allow mkcert to install root certificate.
132
+
This is a one-time operation and details can be found in this upstream [issue](https://github.com/FiloSottile/mkcert/issues/415).
0 commit comments