We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do wygenerowania SECRET_KEY w settings.py można też wykorzystać get_random_string(). EX:
import string from django.utils.crypto import get_random_string allowed_chars = string.digits + string.ascii_letters + '!@#$%^&*(-_=+)' key = get_random_string(64, allowed_chars)
The text was updated successfully, but these errors were encountered:
Jeżeli SECRET_KEY będzie przechowywany jako zmienna środowiskowa allowed_chars nie może zaweirać $.
import string from django.utils.crypto import get_random_string allowed_chars = string.digits + string.ascii_letters + '@#%^&*(-_=+)' key = get_random_string(64, allowed_chars)
Sorry, something went wrong.
No branches or pull requests
Do wygenerowania SECRET_KEY w settings.py można też wykorzystać get_random_string().
EX:
The text was updated successfully, but these errors were encountered: