initial commits...
This commit is contained in:
BIN
db.sqlite3
Normal file
BIN
db.sqlite3
Normal file
Binary file not shown.
0
keyfeel_cal/__init__.py
Normal file
0
keyfeel_cal/__init__.py
Normal file
3
keyfeel_cal/admin.py
Normal file
3
keyfeel_cal/admin.py
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
||||||
5
keyfeel_cal/apps.py
Normal file
5
keyfeel_cal/apps.py
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class KeyfeelCalConfig(AppConfig):
|
||||||
|
name = 'keyfeel_cal'
|
||||||
0
keyfeel_cal/migrations/__init__.py
Normal file
0
keyfeel_cal/migrations/__init__.py
Normal file
3
keyfeel_cal/models.py
Normal file
3
keyfeel_cal/models.py
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
||||||
3
keyfeel_cal/tests.py
Normal file
3
keyfeel_cal/tests.py
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
||||||
5
keyfeel_cal/urls.py
Normal file
5
keyfeel_cal/urls.py
Normal 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
10
keyfeel_cal/views.py
Normal 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.")
|
||||||
|
|
||||||
|
|
||||||
BIN
keyfeels/__pycache__/__init__.cpython-37.pyc
Normal file
BIN
keyfeels/__pycache__/__init__.cpython-37.pyc
Normal file
Binary file not shown.
BIN
keyfeels/__pycache__/settings.cpython-37.pyc
Normal file
BIN
keyfeels/__pycache__/settings.cpython-37.pyc
Normal file
Binary file not shown.
BIN
keyfeels/__pycache__/urls.cpython-37.pyc
Normal file
BIN
keyfeels/__pycache__/urls.cpython-37.pyc
Normal file
Binary file not shown.
BIN
keyfeels/__pycache__/wsgi.cpython-37.pyc
Normal file
BIN
keyfeels/__pycache__/wsgi.cpython-37.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user