Compare commits

..

No commits in common. "5fea6457da578b1fcd7acd36433b9b13715016cc" and "11f3a31d221ed3f6554cf7b84eef89f41d3019f1" have entirely different histories.

11 changed files with 3 additions and 42 deletions

2
django/.gitignore vendored
View File

@ -1,3 +1 @@
.env .env
*.pyc
db.sqlite3

View File

@ -1,3 +0,0 @@
from django.contrib import admin
# Register your models here.

View File

@ -1,6 +0,0 @@
from django.apps import AppConfig
class AccountsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'accounts'

View File

@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@ -1,3 +0,0 @@
from django.test import TestCase
# Create your tests here.

View File

@ -1,9 +0,0 @@
from django.urls import path
from . import views
urlpatterns = [
path("login", views.Login.as_view(), name="login"),
path("create", views.Create.as_view(), name="create"),
path("delete", views.Delete.as_view(), name="delete"),
]

View File

@ -1,12 +0,0 @@
from django.shortcuts import render
from django.views import View
# Create your views here.
class Login(View):
pass
class Create(View):
pass
class Delete(View):
pass

View File

@ -25,7 +25,7 @@ SECRET_KEY = 'django-insecure-18!@88-wm-!skec9^n-85n(f$my^#mh3!#@f=_e@=*arh_yyjj
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True DEBUG = True
ALLOWED_HOSTS = ["*"] ALLOWED_HOSTS = []
# Application definition # Application definition

View File

@ -15,9 +15,8 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
""" """
from django.contrib import admin from django.contrib import admin
from django.urls import path, include from django.urls import path
urlpatterns = [ urlpatterns = [
path('admin/', admin.site.urls), path('admin/', admin.site.urls),
path('api/accounts/', include('accounts.urls')),
] ]