Commit f5ccf1c9 authored by Dexter Sapugay's avatar Dexter Sapugay

added models and views

parent 97a5d8f1
...@@ -10,7 +10,7 @@ For the full list of settings and their values, see ...@@ -10,7 +10,7 @@ For the full list of settings and their values, see
https://docs.djangoproject.com/en/4.1/ref/settings/ https://docs.djangoproject.com/en/4.1/ref/settings/
""" """
from pathlib import Path from pathlib import Path, os
# Build paths inside the project like this: BASE_DIR / 'subdir'. # Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent BASE_DIR = Path(__file__).resolve().parent.parent
...@@ -25,7 +25,7 @@ SECRET_KEY = 'django-insecure-tz8-v6pu)@a&)786uzj!^k*#j!kwe08t1*)#1-%@i#-)bp7j)i ...@@ -25,7 +25,7 @@ SECRET_KEY = 'django-insecure-tz8-v6pu)@a&)786uzj!^k*#j!kwe08t1*)#1-%@i#-)bp7j)i
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True DEBUG = True
ALLOWED_HOSTS = [] ALLOWED_HOSTS = ['127.0.0.1', 'localhost']
# Application definition # Application definition
...@@ -105,7 +105,7 @@ AUTH_PASSWORD_VALIDATORS = [ ...@@ -105,7 +105,7 @@ AUTH_PASSWORD_VALIDATORS = [
LANGUAGE_CODE = 'en-us' LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC' TIME_ZONE = 'Hongkong'
USE_I18N = True USE_I18N = True
...@@ -116,6 +116,8 @@ USE_TZ = True ...@@ -116,6 +116,8 @@ USE_TZ = True
# https://docs.djangoproject.com/en/4.1/howto/static-files/ # https://docs.djangoproject.com/en/4.1/howto/static-files/
STATIC_URL = 'static/' STATIC_URL = 'static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
MEDIA_URL = 'img/'
# Default primary key field type # Default primary key field type
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field # https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment