-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from sheepman4267/0.2.0
Merge 0.2.0 for release
- Loading branch information
Showing
108 changed files
with
3,290 additions
and
805 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
**.sqlite3 | ||
**/static-root | ||
**/media-root | ||
**/media | ||
**/media-root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
OpenShow/media/* | ||
*/static-root/ | ||
*/media-root/ | ||
*/static-root/ | ||
.ipython/profile_default/history.sqlite | ||
*db.sqlite3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
c.InteractiveShellApp.extensions = ["autoreload"] | ||
c.InteractiveShellApp.exec_lines = ["%autoreload 2"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
This is the IPython startup directory | ||
|
||
.py and .ipy files in this directory will be run *prior* to any code or files specified | ||
via the exec_lines or exec_files configurables whenever you load this profile. | ||
|
||
Files will be run in lexicographical order, so you can control the execution order of files | ||
with a prefix, e.g.:: | ||
|
||
00-first.py | ||
50-middle.py | ||
99-last.ipy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from ninja import NinjaAPI | ||
|
||
api = NinjaAPI() | ||
|
||
api.add_router("/slides/", "slides.api.router") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
web: python -m uvicorn --host 0.0.0.0 --port 8000 OpenShow.asgi:application | ||
worker: python manage.py qcluster |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
web: PYTHONUNBUFFERED=1 python manage.py runserver 8030 | ||
worker: PYTHONUNBUFFERED=1 python manage.py qcluster |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
body > header { | ||
display: grid; | ||
grid-template-columns: 5rem 1fr 5rem; | ||
text-align: center; | ||
height: 6rem; | ||
padding: 0; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.header-right-button svg, | ||
.header-back-button svg { | ||
height: 100%; | ||
width: 2rem; | ||
margin: auto; | ||
} | ||
|
||
.header-back-button a { | ||
margin: 0; | ||
} | ||
|
||
.sidebar-layout.double { | ||
grid-template-columns: 18rem 2fr 1fr; | ||
height: calc(100dvh - 7rem); | ||
} | ||
|
||
h2 { | ||
margin: 0; | ||
} | ||
|
||
.hidden { | ||
display: none; | ||
} | ||
|
||
@media screen and (max-width: 50rem) { | ||
.sidebar-layout.double { | ||
display: flex; | ||
flex-direction: column; | ||
max-height: calc(100dvh - 7rem); | ||
} | ||
} | ||
|
||
@media screen and (min-width: 1420px) { | ||
.sidebar-layout.double { | ||
grid-template-columns: 18rem 2fr 25rem; | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.