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: docs/guides/using-the-binary.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,13 @@ A full list of environment variables and CLI flags is available in the [Configur
29
29
After you are done with configuration you can start tinyauth. If you are using an environment variables you need to set them in your shell, this can be done by running:
30
30
31
31
```shellscript
32
-
source tinyauth.env
32
+
export $(grep -v '^#' .env | xargs -d '\n')
33
33
```
34
34
35
+
::: tip
36
+
If you like, you can unset the environment variables (perhaps for security reasons) with `unset $(grep -v '^#' .env | sed -E 's/(.*)=.*/\1/' | xargs)`.
37
+
:::
38
+
35
39
Finally you can start up the tinyauth server with:
0 commit comments