initial commits...

master
Daniel Martinez 2020-01-28 17:09:08 -05:00
parent ffae8eaa0e
commit e74009a0d2
13 changed files with 29 additions and 0 deletions

BIN
db.sqlite3 Normal file

Binary file not shown.

0
keyfeel_cal/__init__.py Normal file
View File

3
keyfeel_cal/admin.py Normal file
View File

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

5
keyfeel_cal/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class KeyfeelCalConfig(AppConfig):
name = 'keyfeel_cal'

View File

3
keyfeel_cal/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
keyfeel_cal/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

5
keyfeel_cal/urls.py Normal file
View File

@ -0,0 +1,5 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]

10
keyfeel_cal/views.py Normal file
View File

@ -0,0 +1,10 @@
from django.shortcuts import render
# Create your views here.
from django.http import HttpResponse
def index(request):
return HttpResponse("This will be the calendar basis for everything.")

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.