Compare commits

..

No commits in common. "827508a4806a5faf3220ce6bf0324182e44b1bb9" and "6da4073ced21c73c85711dcaaef0f1a9826035c4" have entirely different histories.

12 changed files with 0 additions and 31 deletions

View file

@ -1,7 +0,0 @@
# Mixr API
## Setup
### Install requirements
If there are any issues with `psycopg2` and that it cannot be imported, you might be missing `libpq-dev`. If you are using a virtual environment, install it with `sudo apt-get install libpq-dev`

View file

View file

@ -1,6 +0,0 @@
from django.contrib import admin
from .user.models import *
admin.site.register(UserInformation)
# Register your models here.

View file

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

View file

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

View file

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

View file

@ -1 +0,0 @@
from .user_information import UserInformation

View file

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

View file

@ -31,7 +31,6 @@ ALLOWED_HOSTS = []
# Application definition # Application definition
INSTALLED_APPS = [ INSTALLED_APPS = [
'api_v1.apps.ApiV1Config',
'django.contrib.admin', 'django.contrib.admin',
'django.contrib.auth', 'django.contrib.auth',
'django.contrib.contenttypes', 'django.contrib.contenttypes',