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 the environment template file `env.template` to produce a custom `.env` file. This will container your secrets so don't commit it to the repository!
34
+
35
+
```bash
36
+
# Linux/MacOS/WSL
37
+
cp --no-clobber env.template .env
38
+
39
+
# Windows (powershell)
40
+
if (!(Test-Path .env)) { Copy-Item env.template .env }
41
+
```
42
+
33
43
Modify the values within the .env file. Make espacially sure that you have an proper device ID for thin-edge.io. The baseUrl should be without leading https://.
0 commit comments