Skip to content

Commit fba2638

Browse files
aclark4lifetimgrahamJibola
authored
Rebase main (#7)
* Update migrations per ObjectIdAutoField.deconstruct() (#2) See mongodb/django-mongodb-backend@a06efe3 * Use django_mongodb.parse_uri (#3) * Use django_mongodb.parse_uri * Update project_name/settings.py-tpl Co-authored-by: Jib <[email protected]> --------- Co-authored-by: Jib <[email protected]> * Rename (#4) * Rename (#6) * Create README.md (#5) * Create README.md * Update README.md * Update README.md --------- Co-authored-by: Tim Graham <[email protected]> Co-authored-by: Jib <[email protected]> Co-authored-by: Jib <[email protected]>
1 parent 1613351 commit fba2638

File tree

6 files changed

+41
-19
lines changed

6 files changed

+41
-19
lines changed

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Django MongoDB Project Template
2+
3+
This is the starter template for the Django-MongoDB Backend. In order to use, with your version of `django-mongodb-backend` and `django`:
4+
5+
* Find your Django version. To do so from the command line, make sure you have django installed and type:
6+
7+
```bash
8+
django-admin --version
9+
>> 5.0
10+
```
11+
12+
13+
## Create the Django Project
14+
From your shell, run the following command to create a new Django project replacing the `{{ project_name }}` and `{{ version }}` sections.
15+
16+
```bash
17+
django-admin startproject {{ project_name }} --template https://github.com/mongodb-labs/django-mongodb-project/archive/refs/heads/{{ version }}.x.zip
18+
```
19+
20+
Below is an example:
21+
22+
For a project name `5_0_exmaple` that runs on `django==5.0.*`:
23+
24+
```bash
25+
django-admin startproject 5_0_example --template https://github.com/mongodb-labs/django-mongodb-project/archive/refs/heads/5.0.x.zip
26+
```

mongo_migrations/admin/0001_initial.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import django.contrib.admin.models
44
import django.db.models.deletion
55
import django.utils.timezone
6-
import django_mongodb.fields.auto
6+
import django_mongodb_backend.fields.auto
77
from django.conf import settings
88
from django.db import migrations, models
99

@@ -21,7 +21,7 @@ class Migration(migrations.Migration):
2121
migrations.CreateModel(
2222
name='LogEntry',
2323
fields=[
24-
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
24+
('id', django_mongodb_backend.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
2525
('action_time', models.DateTimeField(default=django.utils.timezone.now, editable=False, verbose_name='action time')),
2626
('object_id', models.TextField(blank=True, null=True, verbose_name='object id')),
2727
('object_repr', models.CharField(max_length=200, verbose_name='object repr')),

mongo_migrations/auth/0001_initial.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import django.contrib.auth.validators
55
import django.db.models.deletion
66
import django.utils.timezone
7-
import django_mongodb.fields.auto
7+
import django_mongodb_backend.fields.auto
88
from django.db import migrations, models
99

1010

@@ -20,7 +20,7 @@ class Migration(migrations.Migration):
2020
migrations.CreateModel(
2121
name='Permission',
2222
fields=[
23-
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
23+
('id', django_mongodb_backend.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
2424
('name', models.CharField(max_length=255, verbose_name='name')),
2525
('codename', models.CharField(max_length=100, verbose_name='codename')),
2626
('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.contenttype', verbose_name='content type')),
@@ -38,7 +38,7 @@ class Migration(migrations.Migration):
3838
migrations.CreateModel(
3939
name='Group',
4040
fields=[
41-
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
41+
('id', django_mongodb_backend.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
4242
('name', models.CharField(max_length=150, unique=True, verbose_name='name')),
4343
('permissions', models.ManyToManyField(blank=True, to='auth.permission', verbose_name='permissions')),
4444
],
@@ -53,7 +53,7 @@ class Migration(migrations.Migration):
5353
migrations.CreateModel(
5454
name='User',
5555
fields=[
56-
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
56+
('id', django_mongodb_backend.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
5757
('password', models.CharField(max_length=128, verbose_name='password')),
5858
('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')),
5959
('is_superuser', models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status')),

mongo_migrations/contenttypes/0001_initial.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Generated by Django 5.0.9 on 2024-10-04 20:15
22

33
import django.contrib.contenttypes.models
4-
import django_mongodb.fields.auto
4+
import django_mongodb_backend.fields.auto
55
from django.db import migrations, models
66

77

@@ -16,7 +16,7 @@ class Migration(migrations.Migration):
1616
migrations.CreateModel(
1717
name='ContentType',
1818
fields=[
19-
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
19+
('id', django_mongodb_backend.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
2020
('app_label', models.CharField(max_length=100)),
2121
('model', models.CharField(max_length=100, verbose_name='python model class name')),
2222
],

project_name/apps.py-tpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ from django.contrib.contenttypes.apps import ContentTypesConfig
44

55

66
class MongoAdminConfig(AdminConfig):
7-
default_auto_field = "django_mongodb.fields.ObjectIdAutoField"
7+
default_auto_field = "django_mongodb_backend.fields.ObjectIdAutoField"
88

99

1010
class MongoAuthConfig(AuthConfig):
11-
default_auto_field = "django_mongodb.fields.ObjectIdAutoField"
11+
default_auto_field = "django_mongodb_backend.fields.ObjectIdAutoField"
1212

1313

1414
class MongoContentTypesConfig(ContentTypesConfig):
15-
default_auto_field = "django_mongodb.fields.ObjectIdAutoField"
15+
default_auto_field = "django_mongodb_backend.fields.ObjectIdAutoField"

project_name/settings.py-tpl

+4-8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ For the full list of settings and their values, see
1010
https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/
1111
"""
1212

13+
import django_mongodb_backend
14+
1315
from pathlib import Path
1416

1517
# Build paths inside the project like this: BASE_DIR / 'subdir'.
@@ -74,13 +76,7 @@ WSGI_APPLICATION = '{{ project_name }}.wsgi.application'
7476
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#databases
7577

7678
DATABASES = {
77-
"default": {
78-
"ENGINE": "django_mongodb",
79-
"NAME": "my_database",
80-
# "USER": "my_username",
81-
# "PASSWORD": "my_password",
82-
# "OPTIONS": {...},
83-
},
79+
"default": django_mongodb_backend.parse_uri("mongodb://localhost:27017/{{ project_name }}"),
8480
}
8581

8682
# Password validation
@@ -122,7 +118,7 @@ STATIC_URL = 'static/'
122118
# Default primary key field type
123119
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#default-auto-field
124120

125-
DEFAULT_AUTO_FIELD = 'django_mongodb.fields.ObjectIdAutoField'
121+
DEFAULT_AUTO_FIELD = 'django_mongodb_backend.fields.ObjectIdAutoField'
126122

127123
MIGRATION_MODULES = {
128124
'admin': 'mongo_migrations.admin',

0 commit comments

Comments
 (0)