Skip to content

Commit

Permalink
fix: Remove Settings import in settings file
Browse files Browse the repository at this point in the history
  • Loading branch information
marslanabdulrauf committed Nov 14, 2024
1 parent 0dcfc0a commit e6f0b1a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions notesserver/settings/common.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import os
from django.conf import settings

DEBUG = False
TEMPLATE_DEBUG = False
DISABLE_TOKEN_CHECK = False
USE_TZ = True
TIME_ZONE = 'UTC'
AUTH_USER_MODEL = settings.AUTH_USER_MODEL
AUTH_USER_MODEL = 'auth.User'

# This value needs to be overriden in production.
SECRET_KEY = 'CHANGEME'
Expand Down

0 comments on commit e6f0b1a

Please sign in to comment.