Skip to content

Commit aa846ee

Browse files
committed
DjangoForums
1 parent e11f6ca commit aa846ee

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1433
-0
lines changed

Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: gunicorn django_project.wsgi

django_project/__init__.py

Whitespace-only changes.

django_project/settings.py

+154
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
"""
2+
Django settings for django_project project.
3+
4+
Generated by 'django-admin startproject' using Django 2.2.5.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/2.2/topics/settings/
8+
9+
For the full list of settings and their values, see
10+
https://docs.djangoproject.com/en/2.2/ref/settings/
11+
"""
12+
13+
import os
14+
import django_heroku
15+
16+
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
17+
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
18+
19+
20+
# Quick-start development settings - unsuitable for production
21+
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
22+
23+
# SECURITY WARNING: keep the secret key used in production secret!
24+
SECRET_KEY = os.environ.get('SECRET_KEY')
25+
26+
# SECURITY WARNING: don't run with debug turned on in production!
27+
DEBUG = (os.environ.get('DEBUG_VALUE') == 'True')
28+
29+
ALLOWED_HOSTS = ['jk-djangoforums.herokuapp.com']
30+
31+
32+
# Application definition
33+
34+
INSTALLED_APPS = [
35+
'users.apps.UsersConfig',
36+
'forum.apps.ForumConfig',
37+
'crispy_forms',
38+
'django.contrib.admin',
39+
'django.contrib.auth',
40+
'django.contrib.contenttypes',
41+
'django.contrib.sessions',
42+
'django.contrib.messages',
43+
'django.contrib.staticfiles',
44+
'storages',
45+
]
46+
47+
MIDDLEWARE = [
48+
'django.middleware.security.SecurityMiddleware',
49+
'django.contrib.sessions.middleware.SessionMiddleware',
50+
'django.middleware.common.CommonMiddleware',
51+
'django.middleware.csrf.CsrfViewMiddleware',
52+
'django.contrib.auth.middleware.AuthenticationMiddleware',
53+
'django.contrib.messages.middleware.MessageMiddleware',
54+
'django.middleware.clickjacking.XFrameOptionsMiddleware',
55+
]
56+
57+
ROOT_URLCONF = 'django_project.urls'
58+
59+
TEMPLATES = [
60+
{
61+
'BACKEND': 'django.template.backends.django.DjangoTemplates',
62+
'DIRS': [],
63+
'APP_DIRS': True,
64+
'OPTIONS': {
65+
'context_processors': [
66+
'django.template.context_processors.debug',
67+
'django.template.context_processors.request',
68+
'django.contrib.auth.context_processors.auth',
69+
'django.contrib.messages.context_processors.messages',
70+
],
71+
},
72+
},
73+
]
74+
75+
WSGI_APPLICATION = 'django_project.wsgi.application'
76+
77+
78+
# Database
79+
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
80+
81+
DATABASES = {
82+
'default': {
83+
'ENGINE': 'django.db.backends.sqlite3',
84+
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
85+
}
86+
}
87+
88+
89+
# Password validation
90+
# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators
91+
92+
AUTH_PASSWORD_VALIDATORS = [
93+
{
94+
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
95+
},
96+
{
97+
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
98+
},
99+
{
100+
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
101+
},
102+
{
103+
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
104+
},
105+
]
106+
107+
108+
# Internationalization
109+
# https://docs.djangoproject.com/en/2.2/topics/i18n/
110+
111+
LANGUAGE_CODE = 'en-us'
112+
113+
TIME_ZONE = 'UTC'
114+
115+
USE_I18N = True
116+
117+
USE_L10N = True
118+
119+
USE_TZ = True
120+
121+
122+
# Static files (CSS, JavaScript, Images)
123+
# https://docs.djangoproject.com/en/2.2/howto/static-files/
124+
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
125+
STATIC_URL = '/static/'
126+
127+
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
128+
MEDIA_URL = '/media/'
129+
130+
CRISPY_TEMPLATE_PACK = 'bootstrap4'
131+
132+
LOGIN_REDIRECT_URL = 'forum-home'
133+
LOGIN_URL = 'login'
134+
135+
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
136+
EMAIL_HOST = 'smtp.gmail.com'
137+
EMAIL_PORT = 587
138+
EMAIL_USE_TLS = True
139+
EMAIL_HOST_USER = os.environ.get('EMAIL_USER')
140+
EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_PASS')
141+
142+
AWS_ACCESS_KEY_ID = os.environ.get('AWS_ACCESS_KEY_ID')
143+
AWS_SECRET_ACCESS_KEY = os.environ.get('AWS_SECRET_ACCESS_KEY')
144+
AWS_STORAGE_BUCKET_NAME = os.environ.get('AWS_STORAGE_BUCKET_NAME')
145+
146+
AWS_S3_FILE_OVERWRITE = False
147+
AWS_DEFAULT_ACL = None
148+
149+
# AWS_S3_HOST = 's3-website.us-east-2.amazonaws.com'
150+
# S3_USE_SIGV4 = True
151+
152+
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'
153+
154+
django_heroku.settings(locals())

django_project/urls.py

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
"""django_project URL Configuration
2+
3+
The `urlpatterns` list routes URLs to views. For more information please see:
4+
https://docs.djangoproject.com/en/2.2/topics/http/urls/
5+
Examples:
6+
Function views
7+
1. Add an import: from my_app import views
8+
2. Add a URL to urlpatterns: path('', views.home, name='home')
9+
Class-based views
10+
1. Add an import: from other_app.views import Home
11+
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
12+
Including another URLconf
13+
1. Import the include() function: from django.urls import include, path
14+
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
15+
"""
16+
17+
18+
from django.contrib import admin
19+
from django.contrib.auth import views as auth_views
20+
from django.urls import path, include
21+
from users import views as user_views
22+
from django.conf import settings
23+
from django.conf.urls.static import static
24+
25+
urlpatterns = [
26+
path('admin/', admin.site.urls),
27+
path('register/', user_views.register, name='register'),
28+
path('profile/', user_views.profile, name='profile'),
29+
30+
path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
31+
path('logout/', auth_views.LogoutView.as_view(template_name='users/logout.html'), name='logout'),
32+
path('password-reset/', auth_views.PasswordResetView.as_view(template_name='users/password_reset.html'), name='password_reset'),
33+
path('password-reset/done/', auth_views.PasswordResetDoneView.as_view(template_name='users/password_reset_done.html'), name='password_reset_done'),
34+
path('password-reset-confirm/<uidb64>/<token>/', auth_views.PasswordResetConfirmView.as_view(template_name='users/password_reset_confirm.html'), name='password_reset_confirm'),
35+
path('password-reset-complete/', auth_views.PasswordResetCompleteView.as_view(template_name='users/password_reset_complete.html'), name='password_reset_complete'),
36+
37+
path('', include('forum.urls')),
38+
]
39+
40+
if settings.DEBUG:
41+
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

django_project/wsgi.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
WSGI config for django_project project.
3+
4+
It exposes the WSGI callable as a module-level variable named ``application``.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/
8+
"""
9+
10+
import os
11+
12+
from django.core.wsgi import get_wsgi_application
13+
14+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
15+
16+
application = get_wsgi_application()

forum/__init__.py

Whitespace-only changes.

forum/admin.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.contrib import admin
2+
from .models import Post, Reply
3+
4+
admin.site.register(Post)
5+
admin.site.register(Reply)
6+

forum/apps.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.apps import AppConfig
2+
3+
4+
class ForumConfig(AppConfig):
5+
name = 'forum'

forum/migrations/0001_initial.py

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Generated by Django 2.2.5 on 2019-09-12 04:02
2+
3+
from django.conf import settings
4+
from django.db import migrations, models
5+
import django.db.models.deletion
6+
import django.utils.timezone
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
initial = True
12+
13+
dependencies = [
14+
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
15+
]
16+
17+
operations = [
18+
migrations.CreateModel(
19+
name='Post',
20+
fields=[
21+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
22+
('title', models.CharField(max_length=100)),
23+
('content', models.TextField()),
24+
('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
25+
('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
26+
],
27+
),
28+
migrations.CreateModel(
29+
name='Reply',
30+
fields=[
31+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
32+
('title', models.CharField(max_length=100)),
33+
('content', models.TextField()),
34+
('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
35+
('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
36+
('post', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='forum.Post')),
37+
],
38+
),
39+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Generated by Django 2.2.5 on 2019-09-12 04:50
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('forum', '0001_initial'),
10+
]
11+
12+
operations = [
13+
migrations.RemoveField(
14+
model_name='reply',
15+
name='title',
16+
),
17+
]

forum/migrations/__init__.py

Whitespace-only changes.

forum/models.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
from django.db import models
2+
from django.utils import timezone
3+
from django.contrib.auth.models import User
4+
from django.urls import reverse
5+
6+
class Post(models.Model):
7+
title = models.CharField(max_length=100)
8+
content = models.TextField()
9+
date_posted = models.DateTimeField(default=timezone.now)
10+
author = models.ForeignKey(User, on_delete=models.CASCADE)
11+
12+
def __str__(self):
13+
return self.title
14+
15+
def get_absolute_url(self):
16+
return reverse('post-detail', kwargs={'pk': self.pk})
17+
18+
class Reply(models.Model):
19+
post = models.ForeignKey(Post, on_delete=models.CASCADE)
20+
content = models.TextField()
21+
date_posted = models.DateTimeField(default=timezone.now)
22+
author = models.ForeignKey(User, on_delete=models.CASCADE)
23+
24+
def __str__(self):
25+
return self.content
26+
27+
def get_absolute_url(self):
28+
return reverse('post-detail', kwargs={'pk': self.post.pk})

0 commit comments

Comments
 (0)