Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit a52980a

Browse files
authored
Randomize result on each run (CI Ignore)
1 parent 8cf55c1 commit a52980a

File tree

1 file changed

+2
-1
lines changed
  • containers/python-3-postgres/test-project/web_project

1 file changed

+2
-1
lines changed

containers/python-3-postgres/test-project/web_project/settings.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
#-------------------------------------------------------------------------------------------------------------
55

66
import os
7+
import uuid
78

89
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
910

10-
SECRET_KEY = 'placeholder'
11+
SECRET_KEY = str(uuid.uuid4())
1112

1213
DEBUG = True
1314

0 commit comments

Comments
 (0)