Skip to content
Snippets Groups Projects
Commit d710c1eb authored by florimondmanca's avatar florimondmanca
Browse files

create empty projects app

parent c2ef5eda
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,7 @@ PROJECT_APPS = [
'register.apps.RegisterConfig',
'api.apps.ApiConfig',
'mails.apps.MailsConfig',
'projects.apps.ProjectsConfig',
]
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + PROJECT_APPS
......
from django.contrib import admin
# Register your models here.
from django.apps import AppConfig
class ProjectsConfig(AppConfig):
name = 'projects'
from django.db import models
# Create your models here.
from django.test import TestCase
# Create your tests here.
from django.shortcuts import render
# Create your views here.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment