13 lines
246 B
Python
13 lines
246 B
Python
"""Local settings."""
|
|
from .base import *
|
|
|
|
ALLOWED_HOSTS = ['*', ]
|
|
|
|
SEND_SMS = False
|
|
SMS_CODE_SHOW = True
|
|
|
|
DOMAIN_URI = 'localhost:8000'
|
|
|
|
# Increase access token lifetime for local deploy
|
|
SIMPLE_JWT['ACCESS_TOKEN_LIFETIME'] = timedelta(days=365)
|