seeded apps.epic for backend gameboard logic; core.asgi & .settings now accomodate Channels via Redis; several new libraries in reqs to accomodate
This commit is contained in:
0
src/apps/epic/__init__.py
Normal file
0
src/apps/epic/__init__.py
Normal file
3
src/apps/epic/admin.py
Normal file
3
src/apps/epic/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
5
src/apps/epic/apps.py
Normal file
5
src/apps/epic/apps.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class EpicConfig(AppConfig):
|
||||
name = 'apps.epic'
|
||||
1
src/apps/epic/consumers.py
Normal file
1
src/apps/epic/consumers.py
Normal file
@@ -0,0 +1 @@
|
||||
# RoomConsumer goes here
|
||||
0
src/apps/epic/forms.py
Normal file
0
src/apps/epic/forms.py
Normal file
0
src/apps/epic/migrations/__init__.py
Normal file
0
src/apps/epic/migrations/__init__.py
Normal file
3
src/apps/epic/models.py
Normal file
3
src/apps/epic/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
1
src/apps/epic/routing.py
Normal file
1
src/apps/epic/routing.py
Normal file
@@ -0,0 +1 @@
|
||||
websocket_urlpatterns = []
|
||||
0
src/apps/epic/tests/__init__.py
Normal file
0
src/apps/epic/tests/__init__.py
Normal file
0
src/apps/epic/tests/integrated/__init__.py
Normal file
0
src/apps/epic/tests/integrated/__init__.py
Normal file
0
src/apps/epic/tests/unit/__init__.py
Normal file
0
src/apps/epic/tests/unit/__init__.py
Normal file
0
src/apps/epic/urls.py
Normal file
0
src/apps/epic/urls.py
Normal file
3
src/apps/epic/views.py
Normal file
3
src/apps/epic/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
1
src/apps/epic/voronoi.py
Normal file
1
src/apps/epic/voronoi.py
Normal file
@@ -0,0 +1 @@
|
||||
# TODO: toroidal topology (tile seeds across boundary before computing)
|
||||
Reference in New Issue
Block a user