Merge pull request #9 from akhterarif/master

#8 Fixed the core module not found issue.
This commit is contained in:
Saqibur Rahman 2024-02-02 11:10:52 +06:00 committed by GitHub
commit b1e7321d45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 1 deletions

View File

@ -3,4 +3,4 @@ from django.apps import AppConfig
class CoreConfig(AppConfig): class CoreConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField" default_auto_field = "django.db.models.BigAutoField"
name = "core" name = "apps.core"

View File

@ -36,6 +36,7 @@ INSTALLED_APPS = [
"django.contrib.sessions", "django.contrib.sessions",
"django.contrib.messages", "django.contrib.messages",
"django.contrib.staticfiles", "django.contrib.staticfiles",
"apps.core",
] ]
MIDDLEWARE = [ MIDDLEWARE = [
@ -68,6 +69,20 @@ TEMPLATES = [
WSGI_APPLICATION = "config.wsgi.application" WSGI_APPLICATION = "config.wsgi.application"
# Database
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'your-db-name',
'USER': 'your-db-user',
'PASSWORD': 'your-db-user-password',
'HOST': 'your-db-host',
'PORT': 'your-db-port',
}
}
# Password validation # Password validation
# https://docs.djangoproject.com/en/4.0/ref/settings/#auth-password-validators # https://docs.djangoproject.com/en/4.0/ref/settings/#auth-password-validators