Compare commits

...

4 Commits

Author SHA1 Message Date
16bf852714 Merge branch 'master' of https://code.keybored.co/keybored-co/keymedia 2020-06-19 18:56:43 -04:00
5f6a6723bd added first readme description 2020-06-19 18:56:37 -04:00
3008654dc1 fix merge 2020-06-16 17:33:29 -04:00
1a90ebe583 hmm 2020-06-16 17:32:37 -04:00
13 changed files with 14 additions and 25 deletions

13
README.md Normal file
View File

@@ -0,0 +1,13 @@
KeyMedia is gonna be a way to track media you've consumed (barring music, seeing as scrobbling is likely an
existing better solution for this). Will implement:
Books
Movies
TV Shows
Video Games
Planned Features:
- Import views/ratings from letterbox'd, goodreads?
- Rating {Possibly multiple ways? Choose whether to do 0, 3, 5, 10, or 100 point scale?}
- Social Features?
- Some kind of recommendation Engine
- Favorites to headline profile

View File

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,4 +0,0 @@
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello ur at your media page")

View File

@@ -1,7 +1,7 @@
import unittest
from django.test import TestCase
Class AddMediaTests(unittest.TestCase):
Class AddMediaTests(TestCase):
def test_add_movie(self):
pass