Skip to content

Commit a20e69e

Browse files
committed
FORCE_SCRIPT_NAME 환경변수 제공 안되면 기본값 사용하도록
1 parent f29f466 commit a20e69e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyconkr/production_settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
DEBUG = False
77
ALLOWED_HOSTS = ['*']
88

9-
FORCE_SCRIPT_NAME = os.environ.get('SCRIPT_NAME', '2019')
9+
FORCE_SCRIPT_NAME = os.getenv('SCRIPT_NAME', None)
1010

1111
db_env_keys = ['POSTGRES_HOST', 'POSTGRES_NAME', 'POSTGRES_PORT',
1212
'POSTGRES_USER', 'POSTGRES_PASSWORD']

0 commit comments

Comments
 (0)