Compare changes
.gitignore
0 → 100644
+1
−0
.gitlab-ci.yml
0 → 100644
+23
−0
Procfile
0 → 100644
+2
−0
README.md
0 → 100644
+129
−0
__init__.py
0 → 100644
+2
−0
app.py
0 → 100644
+56
−0
blueprints/__init__.py
0 → 100644
+0
−0
Original line number | Original line | Diff line number | Diff line |
---|
blueprints/auth.py
0 → 100644
+36
−0
blueprints/home.py
0 → 100644
+56
−0
config/__init__.py
0 → 100644
+12
−0
config/config.py
0 → 100644
+66
−0
database/__init__.py
0 → 100644
+0
−0
Original line number | Original line | Diff line number | Diff line |
---|
database/db.py
0 → 100644
+4
−0
models/__init__.py
0 → 100644
+0
−0
Original line number | Original line | Diff line number | Diff line |
---|
models/entity.py
0 → 100644
+10
−0
requirements.txt
0 → 100644
+19
−0
runtime.txt
0 → 100644
+1
−0
setup_push.sh
0 → 100644
+28
−0
static/css/base.css
0 → 100644
+5
−0
static/css/login.css
0 → 100644
+49
−0
static/img/imperial-logo.png
0 → 100644
+335 B

335 B
static/img/python-logo.png
0 → 100644
+49.6 KiB

49.62 KiB
templates/base.html
0 → 100644
+36
−0
templates/dashboard.html
0 → 100644
+51
−0
templates/index.html
0 → 100644
+42
−0
templates/login.html
0 → 100644
+31
−0
templates/panopto_example.html
0 → 100644
+35
−0
tests/test_home.py
0 → 100644
+37
−0