You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
335 B
Python
12 lines
335 B
Python
7 years ago
|
from django.core.management import utils
|
||
|
|
||
|
def get_secret_from_file(path):
|
||
|
try:
|
||
|
with open(path, "r") as f:
|
||
|
return f.read().strip()
|
||
|
except EnvironmentError:
|
||
|
with open(path, "w") as f:
|
||
|
secret_key = utils.get_random_secret_key()
|
||
|
f.write(secret_key)
|
||
|
return secret_key
|