Added products model

This commit is contained in:
Keannu Christian Bernasol 2023-03-05 21:56:48 +08:00
parent 62237c9a3c
commit d98c88482d
14 changed files with 98 additions and 3 deletions

View file

@ -41,6 +41,7 @@ INSTALLED_APPS = [
'rest_framework.authtoken',
'djoser',
'corsheaders',
'products',
]
MIDDLEWARE = [
@ -110,7 +111,7 @@ AUTH_PASSWORD_VALIDATORS = [
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
TIME_ZONE = 'Asia/Manila'
USE_I18N = True
@ -146,4 +147,5 @@ EMAIL_PORT = '2525'
CORS_ALLOWED_ORIGINS = [
"http://localhost:3000",
"http://localhost:8000",
]