Skip to content

Commit 1613351

Browse files
authored
Merge pull request #1 from aclark4life/main
Move non-organization repository commits to this organization's repository
2 parents ba37e86 + 93bb742 commit 1613351

14 files changed

+378
-0
lines changed

manage.py-tpl

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env python
2+
"""Django's command-line utility for administrative tasks."""
3+
import os
4+
import sys
5+
6+
7+
def main():
8+
"""Run administrative tasks."""
9+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', '{{ project_name }}.settings')
10+
try:
11+
from django.core.management import execute_from_command_line
12+
except ImportError as exc:
13+
raise ImportError(
14+
"Couldn't import Django. Are you sure it's installed and "
15+
"available on your PYTHONPATH environment variable? Did you "
16+
"forget to activate a virtual environment?"
17+
) from exc
18+
execute_from_command_line(sys.argv)
19+
20+
21+
if __name__ == '__main__':
22+
main()

mongo_migrations/__init__.py

Whitespace-only changes.
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Generated by Django 5.0.9 on 2024-10-04 20:15
2+
3+
import django.contrib.admin.models
4+
import django.db.models.deletion
5+
import django.utils.timezone
6+
import django_mongodb.fields.auto
7+
from django.conf import settings
8+
from django.db import migrations, models
9+
10+
11+
class Migration(migrations.Migration):
12+
13+
initial = True
14+
15+
dependencies = [
16+
('contenttypes', '0001_initial'),
17+
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
18+
]
19+
20+
operations = [
21+
migrations.CreateModel(
22+
name='LogEntry',
23+
fields=[
24+
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
25+
('action_time', models.DateTimeField(default=django.utils.timezone.now, editable=False, verbose_name='action time')),
26+
('object_id', models.TextField(blank=True, null=True, verbose_name='object id')),
27+
('object_repr', models.CharField(max_length=200, verbose_name='object repr')),
28+
('action_flag', models.PositiveSmallIntegerField(choices=[(1, 'Addition'), (2, 'Change'), (3, 'Deletion')], verbose_name='action flag')),
29+
('change_message', models.TextField(blank=True, verbose_name='change message')),
30+
('content_type', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='contenttypes.contenttype', verbose_name='content type')),
31+
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='user')),
32+
],
33+
options={
34+
'verbose_name': 'log entry',
35+
'verbose_name_plural': 'log entries',
36+
'db_table': 'django_admin_log',
37+
'ordering': ['-action_time'],
38+
},
39+
managers=[
40+
('objects', django.contrib.admin.models.LogEntryManager()),
41+
],
42+
),
43+
]

mongo_migrations/admin/__init__.py

Whitespace-only changes.

mongo_migrations/auth/0001_initial.py

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Generated by Django 5.0.9 on 2024-10-04 20:15
2+
3+
import django.contrib.auth.models
4+
import django.contrib.auth.validators
5+
import django.db.models.deletion
6+
import django.utils.timezone
7+
import django_mongodb.fields.auto
8+
from django.db import migrations, models
9+
10+
11+
class Migration(migrations.Migration):
12+
13+
initial = True
14+
15+
dependencies = [
16+
('contenttypes', '0001_initial'),
17+
]
18+
19+
operations = [
20+
migrations.CreateModel(
21+
name='Permission',
22+
fields=[
23+
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
24+
('name', models.CharField(max_length=255, verbose_name='name')),
25+
('codename', models.CharField(max_length=100, verbose_name='codename')),
26+
('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.contenttype', verbose_name='content type')),
27+
],
28+
options={
29+
'verbose_name': 'permission',
30+
'verbose_name_plural': 'permissions',
31+
'ordering': ['content_type__app_label', 'content_type__model', 'codename'],
32+
'unique_together': {('content_type', 'codename')},
33+
},
34+
managers=[
35+
('objects', django.contrib.auth.models.PermissionManager()),
36+
],
37+
),
38+
migrations.CreateModel(
39+
name='Group',
40+
fields=[
41+
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
42+
('name', models.CharField(max_length=150, unique=True, verbose_name='name')),
43+
('permissions', models.ManyToManyField(blank=True, to='auth.permission', verbose_name='permissions')),
44+
],
45+
options={
46+
'verbose_name': 'group',
47+
'verbose_name_plural': 'groups',
48+
},
49+
managers=[
50+
('objects', django.contrib.auth.models.GroupManager()),
51+
],
52+
),
53+
migrations.CreateModel(
54+
name='User',
55+
fields=[
56+
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
57+
('password', models.CharField(max_length=128, verbose_name='password')),
58+
('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')),
59+
('is_superuser', models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status')),
60+
('username', models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, unique=True, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username')),
61+
('first_name', models.CharField(blank=True, max_length=150, verbose_name='first name')),
62+
('last_name', models.CharField(blank=True, max_length=150, verbose_name='last name')),
63+
('email', models.EmailField(blank=True, max_length=254, verbose_name='email address')),
64+
('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into this admin site.', verbose_name='staff status')),
65+
('is_active', models.BooleanField(default=True, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active')),
66+
('date_joined', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date joined')),
67+
('groups', models.ManyToManyField(blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.', related_name='user_set', related_query_name='user', to='auth.group', verbose_name='groups')),
68+
('user_permissions', models.ManyToManyField(blank=True, help_text='Specific permissions for this user.', related_name='user_set', related_query_name='user', to='auth.permission', verbose_name='user permissions')),
69+
],
70+
options={
71+
'verbose_name': 'user',
72+
'verbose_name_plural': 'users',
73+
'abstract': False,
74+
'swappable': 'AUTH_USER_MODEL',
75+
},
76+
managers=[
77+
('objects', django.contrib.auth.models.UserManager()),
78+
],
79+
),
80+
]

mongo_migrations/auth/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Generated by Django 5.0.9 on 2024-10-04 20:15
2+
3+
import django.contrib.contenttypes.models
4+
import django_mongodb.fields.auto
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
initial = True
11+
12+
dependencies = [
13+
]
14+
15+
operations = [
16+
migrations.CreateModel(
17+
name='ContentType',
18+
fields=[
19+
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
20+
('app_label', models.CharField(max_length=100)),
21+
('model', models.CharField(max_length=100, verbose_name='python model class name')),
22+
],
23+
options={
24+
'verbose_name': 'content type',
25+
'verbose_name_plural': 'content types',
26+
'db_table': 'django_content_type',
27+
'unique_together': {('app_label', 'model')},
28+
},
29+
managers=[
30+
('objects', django.contrib.contenttypes.models.ContentTypeManager()),
31+
],
32+
),
33+
]

mongo_migrations/contenttypes/__init__.py

Whitespace-only changes.

project_name/__init__.py-tpl

Whitespace-only changes.

project_name/apps.py-tpl

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from django.contrib.admin.apps import AdminConfig
2+
from django.contrib.auth.apps import AuthConfig
3+
from django.contrib.contenttypes.apps import ContentTypesConfig
4+
5+
6+
class MongoAdminConfig(AdminConfig):
7+
default_auto_field = "django_mongodb.fields.ObjectIdAutoField"
8+
9+
10+
class MongoAuthConfig(AuthConfig):
11+
default_auto_field = "django_mongodb.fields.ObjectIdAutoField"
12+
13+
14+
class MongoContentTypesConfig(ContentTypesConfig):
15+
default_auto_field = "django_mongodb.fields.ObjectIdAutoField"

project_name/asgi.py-tpl

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

project_name/settings.py-tpl

+131
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
"""
2+
Django settings for {{ project_name }} project.
3+
4+
Generated by 'django-admin startproject' using Django {{ django_version }}.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/{{ docs_version }}/topics/settings/
8+
9+
For the full list of settings and their values, see
10+
https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/
11+
"""
12+
13+
from pathlib import Path
14+
15+
# Build paths inside the project like this: BASE_DIR / 'subdir'.
16+
BASE_DIR = Path(__file__).resolve().parent.parent
17+
18+
19+
# Quick-start development settings - unsuitable for production
20+
# See https://docs.djangoproject.com/en/{{ docs_version }}/howto/deployment/checklist/
21+
22+
# SECURITY WARNING: keep the secret key used in production secret!
23+
SECRET_KEY = '{{ secret_key }}'
24+
25+
# SECURITY WARNING: don't run with debug turned on in production!
26+
DEBUG = True
27+
28+
ALLOWED_HOSTS = []
29+
30+
31+
# Application definition
32+
33+
INSTALLED_APPS = [
34+
'{{ project_name }}.apps.MongoAdminConfig',
35+
'{{ project_name }}.apps.MongoAuthConfig',
36+
'{{ project_name }}.apps.MongoContentTypesConfig',
37+
'django.contrib.sessions',
38+
'django.contrib.messages',
39+
'django.contrib.staticfiles',
40+
]
41+
42+
MIDDLEWARE = [
43+
'django.middleware.security.SecurityMiddleware',
44+
'django.contrib.sessions.middleware.SessionMiddleware',
45+
'django.middleware.common.CommonMiddleware',
46+
'django.middleware.csrf.CsrfViewMiddleware',
47+
'django.contrib.auth.middleware.AuthenticationMiddleware',
48+
'django.contrib.messages.middleware.MessageMiddleware',
49+
'django.middleware.clickjacking.XFrameOptionsMiddleware',
50+
]
51+
52+
ROOT_URLCONF = '{{ project_name }}.urls'
53+
54+
TEMPLATES = [
55+
{
56+
'BACKEND': 'django.template.backends.django.DjangoTemplates',
57+
'DIRS': [],
58+
'APP_DIRS': True,
59+
'OPTIONS': {
60+
'context_processors': [
61+
'django.template.context_processors.debug',
62+
'django.template.context_processors.request',
63+
'django.contrib.auth.context_processors.auth',
64+
'django.contrib.messages.context_processors.messages',
65+
],
66+
},
67+
},
68+
]
69+
70+
WSGI_APPLICATION = '{{ project_name }}.wsgi.application'
71+
72+
73+
# Database
74+
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#databases
75+
76+
DATABASES = {
77+
"default": {
78+
"ENGINE": "django_mongodb",
79+
"NAME": "my_database",
80+
# "USER": "my_username",
81+
# "PASSWORD": "my_password",
82+
# "OPTIONS": {...},
83+
},
84+
}
85+
86+
# Password validation
87+
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#auth-password-validators
88+
89+
AUTH_PASSWORD_VALIDATORS = [
90+
{
91+
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
92+
},
93+
{
94+
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
95+
},
96+
{
97+
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
98+
},
99+
{
100+
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
101+
},
102+
]
103+
104+
105+
# Internationalization
106+
# https://docs.djangoproject.com/en/{{ docs_version }}/topics/i18n/
107+
108+
LANGUAGE_CODE = 'en-us'
109+
110+
TIME_ZONE = 'UTC'
111+
112+
USE_I18N = True
113+
114+
USE_TZ = True
115+
116+
117+
# Static files (CSS, JavaScript, Images)
118+
# https://docs.djangoproject.com/en/{{ docs_version }}/howto/static-files/
119+
120+
STATIC_URL = 'static/'
121+
122+
# Default primary key field type
123+
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#default-auto-field
124+
125+
DEFAULT_AUTO_FIELD = 'django_mongodb.fields.ObjectIdAutoField'
126+
127+
MIGRATION_MODULES = {
128+
'admin': 'mongo_migrations.admin',
129+
'auth': 'mongo_migrations.auth',
130+
'contenttypes': 'mongo_migrations.contenttypes',
131+
}

project_name/urls.py-tpl

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
"""
2+
URL configuration for {{ project_name }} project.
3+
4+
The `urlpatterns` list routes URLs to views. For more information please see:
5+
https://docs.djangoproject.com/en/{{ docs_version }}/topics/http/urls/
6+
Examples:
7+
Function views
8+
1. Add an import: from my_app import views
9+
2. Add a URL to urlpatterns: path('', views.home, name='home')
10+
Class-based views
11+
1. Add an import: from other_app.views import Home
12+
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
13+
Including another URLconf
14+
1. Import the include() function: from django.urls import include, path
15+
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
16+
"""
17+
from django.contrib import admin
18+
from django.urls import path
19+
20+
urlpatterns = [
21+
path('admin/', admin.site.urls),
22+
]

project_name/wsgi.py-tpl

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
WSGI config for {{ project_name }} 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/{{ docs_version }}/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', '{{ project_name }}.settings')
15+
16+
application = get_wsgi_application()

0 commit comments

Comments
 (0)