File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ 1.0.27] 2025-05-11
4+ ### [ Django AdminLTE] ( https://app-generator.dev/product/adminlte/django/ ) Changes
5+
6+ - CONFIG.Settings/SECRET_KEY: remove randomness if not specified
7+
38## [ 1.0.26] 2025-05-06
49### [ Django AdminLTE] ( https://app-generator.dev/product/adminlte/django/ ) Changes
510
Original file line number Diff line number Diff line change 2424# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
2525
2626# SECURITY WARNING: keep the secret key used in production secret!
27- SECRET_KEY = os .environ .get ('SECRET_KEY' )
28- if not SECRET_KEY :
29- SECRET_KEY = '' .join (random .choice ( string .ascii_lowercase ) for i in range ( 32 ))
27+ SECRET_KEY = os .environ .get ('SECRET_KEY' , 'Super_Secr3t_9999' )
3028
3129# Enable/Disable DEBUG Mode
3230DEBUG = str2bool (os .environ .get ('DEBUG' ))
You can’t perform that action at this time.
0 commit comments