settings.py

"""
Django settings for freeThought project.

Generated by 'django-admin startproject' using Django 2.1.7.

For more information on this file, see
https://docs.djangoproject.com/en/2.1/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.1/ref/settings/
"""

import os

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '#####################################'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'public_posts',
    'admin_posts',
    'accounts.apps.AccountsConfig',
]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'freeThought.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates'), os.path.join(
'public_posts/', 'templates'), os.path.join('accounts/', 'templates')],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

WSGI_APPLICATION = 'freeThought.wsgi.application'


# Database
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    }
}


# Password validation
# 
https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
    {
        'NAME': 
'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
    },
    {
        'NAME': 
'django.contrib.auth.password_validation.MinimumLengthValidator',
    },
    {
        'NAME': 
'django.contrib.auth.password_validation.CommonPasswordValidator',
    },
    {
        'NAME': 
'django.contrib.auth.password_validation.NumericPasswordValidator',
    },
]


# Internationalization
# https://docs.djangoproject.com/en/2.1/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.1/howto/static-files/

STATIC_URL = '/static/'
LOGIN_REDIRECT = 'home'
LOGOUT_REDIRECT = 'logged_out'
AUTH_USER_MODEL = 'public_posts.CustomUser'
DEFAULT_USER_MANAGER = 'public_posts.CustomUserManager' # This is here 
because I read it may help...it didn't


Root urls.py

"""freeThought URL Configuration

The `urlpatterns` list routes URLs to views. For more information please 
see:
    https://docs.djangoproject.com/en/2.1/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include
from django.conf.urls import url
from django.views.generic.base import TemplateView

# SET HOME AS PERSONAL BLOG PAGE
urlpatterns = [
    path('admin/', admin.site.urls),
    path('registration/', TemplateView.as_view(template_name=
'registration_form.html'), name='signup'),
    path('public_posts/', include('public_posts.urls')),
    path('admin_posts/', include('admin_posts.urls')),
    path('public_posts/', include('django.contrib.auth.urls')),
    path('admin_posts/', TemplateView.as_view(template_name='mod_posts.html'
), name='mod_posts'),
    path('public_posts/', TemplateView.as_view(template_name=
'pub_posts.html'), name='pub_posts'),
    path('accounts/', include('accounts.urls')),
    url(r'^accounts/', include(
'django_registration.backends.activation.urls')),
    url(r'^accounts/', include('django.contrib.auth.urls')),
]




On Friday, April 5, 2019 at 5:16:00 PM UTC-4, jgi...@caktusgroup.com wrote:
>
> Hi,
>
> Can you post the structure of your app, including project root?  Setting 
> up a CustomUser Model is not a simple task, especially if you are new to 
> the framework.
>
> On Friday, April 5, 2019 at 11:06:43 AM UTC-4, silverst...@gmail.com 
> wrote:
>>
>> Something odd is that when the Manager unavailable error comes up, the 
>> path in the terminal is " "POST /accounts/accounts/templates/registration/ 
>> HTTP/1.1"   Why does accounts come up twice????
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6c84d378-943e-46b4-8af1-e5a2c9b60438%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to