-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathverify_env.py
More file actions
executable file
·43 lines (31 loc) · 1.08 KB
/
verify_env.py
File metadata and controls
executable file
·43 lines (31 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
import random
import string
import os
import os.path
def gen_random(str_len):
return "".join(random.choice(string.hexdigits) for x in range(str_len))
def main():
# Don't need to create config folder if env vars are already set
if (
os.getenv("API_SECRET_KEY", None)
and os.getenv("DATABASE_URI", None)
and os.getenv("DB_ENCRYPTION_KEY")
):
return
API_SECRET_KEY = os.getenv("API_SECRET_KEY", None)
ENCRYPTION_KEY = os.getenv("DB_ENCRYPTION_KEY", None)
if not API_SECRET_KEY:
SECRET_KEY = 'export API_SECRET_KEY="{}"'.format(gen_random(48))
else:
SECRET_KEY = 'export API_SECRET_KEY="{}"'.format(API_SECRET_KEY)
if not ENCRYPTION_KEY:
ENCRYPTION_KEY = 'export DB_ENCRYPTION_KEY="{}"'.format(gen_random(16))
else:
ENCRYPTION_KEY = 'export DB_ENCRYPTION_KEY="{}"'.format(ENCRYPTION_KEY)
if not os.path.isdir("./config"):
os.makedirs("./config")
f = open("./config/.env", "w")
f.writelines([SECRET_KEY, "\n", ENCRYPTION_KEY])
f.close()
main()