Skip to content

Commit

Permalink
Begin adding user support
Browse files Browse the repository at this point in the history
  • Loading branch information
mhadam committed Nov 1, 2023
1 parent 14a91cb commit 409b4c0
Show file tree
Hide file tree
Showing 9 changed files with 969 additions and 763 deletions.
1,713 changes: 950 additions & 763 deletions app/poetry.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ yacron = "^0.14.0"
whitenoise = {extras = ["brotli"], version = "^6.0.0"}
Pillow = "^9.3.0"
hypercorn = "^0.14.3"
authlib = "^1.2.1"

[tool.poetry.dev-dependencies]
pytest-django = "^4.4.0"
Expand Down
Empty file added app/users/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions app/users/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
6 changes: 6 additions & 0 deletions app/users/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class UsersConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'users'
Empty file.
3 changes: 3 additions & 0 deletions app/users/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions app/users/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
3 changes: 3 additions & 0 deletions app/users/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.

0 comments on commit 409b4c0

Please sign in to comment.