File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ Some environment variables in the `.env` file have a default value of `changethi
147147You have to change them with a secret key, to generate secret keys you can run the following command:
148148
149149``` bash
150- python -c " import secrets; print(secrets.token_urlsafe(32))"
150+ python -c " import secrets; print(secrets.token_urlsafe(32)[:40] )"
151151```
152152
153153Copy the content and use that as password / secret key. And run that again to generate another secure key.
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ Some environment variables in the `.env` file have a default value of `changethi
158158You have to change them with a secret key, to generate secret keys you can run the following command:
159159
160160``` bash
161- python -c " import secrets; print(secrets.token_urlsafe(32))"
161+ python -c " import secrets; print(secrets.token_urlsafe(32)[:40] )"
162162```
163163
164164Copy the content and use that as password / secret key. And run that again to generate another secure key.
You can’t perform that action at this time.
0 commit comments