Created basic django server structure

This commit is contained in:
Clemens-Dautermann 2018-12-10 21:54:29 +01:00
parent d25bdd8a10
commit 0b31a83f83
15 changed files with 224 additions and 0 deletions

View file

View file

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

View file

@ -0,0 +1,5 @@
from django.apps import AppConfig
class UserManagerConfig(AppConfig):
name = 'user_manager'

View file

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

View file

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

View file

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.