Skip to content

Commit

Permalink
[ ADD ] CodingApp application creation
Browse files Browse the repository at this point in the history
  • Loading branch information
tavolafourcade committed May 22, 2022
1 parent 87a2d7c commit eed1bad
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 0 deletions.
Empty file.
3 changes: 3 additions & 0 deletions django/CodingProject/CodingApp/admin.py
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
6 changes: 6 additions & 0 deletions django/CodingProject/CodingApp/apps.py
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class CodingappConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'CodingApp'
Empty file.
3 changes: 3 additions & 0 deletions django/CodingProject/CodingApp/models.py
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions django/CodingProject/CodingApp/tests.py
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
3 changes: 3 additions & 0 deletions django/CodingProject/CodingApp/views.py
@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.
Binary file not shown.
Binary file not shown.

0 comments on commit eed1bad

Please sign in to comment.