Skip to content

Commit

Permalink
scaffold website
Browse files Browse the repository at this point in the history
  • Loading branch information
pylbatu committed Apr 29, 2020
1 parent ef806a9 commit 5a94333
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 0 deletions.
Empty file added website/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions website/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
5 changes: 5 additions & 0 deletions website/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from django.apps import AppConfig


class WebsiteConfig(AppConfig):
name = 'website'
Empty file added website/migrations/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions website/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions website/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
3 changes: 3 additions & 0 deletions website/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.

0 comments on commit 5a94333

Please sign in to comment.