Compare commits
No commits in common. "827508a4806a5faf3220ce6bf0324182e44b1bb9" and "6da4073ced21c73c85711dcaaef0f1a9826035c4" have entirely different histories.
827508a480
...
6da4073ced
12 changed files with 0 additions and 31 deletions
|
@ -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`
|
|
|
@ -1,6 +0,0 @@
|
||||||
from django.contrib import admin
|
|
||||||
from .user.models import *
|
|
||||||
|
|
||||||
admin.site.register(UserInformation)
|
|
||||||
|
|
||||||
# Register your models here.
|
|
|
@ -1,6 +0,0 @@
|
||||||
from django.apps import AppConfig
|
|
||||||
|
|
||||||
|
|
||||||
class ApiV1Config(AppConfig):
|
|
||||||
default_auto_field = 'django.db.models.BigAutoField'
|
|
||||||
name = 'api_v1'
|
|
|
@ -1,4 +0,0 @@
|
||||||
from django.db import models
|
|
||||||
from .user.models import *
|
|
||||||
|
|
||||||
# Create your models here.
|
|
|
@ -1,3 +0,0 @@
|
||||||
from django.test import TestCase
|
|
||||||
|
|
||||||
# Create your tests here.
|
|
|
@ -1 +0,0 @@
|
||||||
from .user_information import UserInformation
|
|
|
@ -1,3 +0,0 @@
|
||||||
from django.shortcuts import render
|
|
||||||
|
|
||||||
# Create your views here.
|
|
|
@ -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',
|
||||||
|
|
Loading…
Reference in a new issue