Created HostingPlatform app

This commit is contained in:
Kristofers Solo 2023-04-08 13:50:45 +03:00
parent 4b97d321bc
commit 816c430f29
8 changed files with 19 additions and 0 deletions

View File

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

View File

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

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.

View File

@ -38,6 +38,7 @@ ALLOWED_HOSTS = config["ALLOWED_HOSTS"]
INSTALLED_APPS = [
"fossdb",
"account",
"hosting_platform",
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",