otter-service-stdalone 0.1.25__tar.gz → 0.1.26__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/PKG-INFO +5 -1
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/README.md +4 -0
- otter_service_stdalone-0.1.26/src/otter_service_stdalone/__init__.py +1 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/grade_notebooks.py +2 -1
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone.egg-info/PKG-INFO +5 -1
- otter_service_stdalone-0.1.25/src/otter_service_stdalone/__init__.py +0 -1
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/pyproject.toml +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/setup.cfg +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/access_sops_keys.py +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/app.py +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/fs_logging.py +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/index.html +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/secrets/gh_key.dev.yaml +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/secrets/gh_key.local.yaml +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/secrets/gh_key.prod.yaml +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/secrets/gh_key.staging.yaml +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/static_templates/403.html +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/static_templates/500.html +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/upload_handle.py +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/user_auth.py +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone.egg-info/SOURCES.txt +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone.egg-info/dependency_links.txt +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone.egg-info/entry_points.txt +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone.egg-info/top_level.txt +0 -0
- {otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/tests/test_upload_handle.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: otter_service_stdalone
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.26
|
4
4
|
Summary: Grading Service for Instructors using Otter Grader
|
5
5
|
Home-page: https://github.com/sean-morris/otter-service-stdalone
|
6
6
|
Author: Sean Morris
|
@@ -27,3 +27,7 @@ the version number in src/otter_service_stdalone/__init__.py before a new build.
|
|
27
27
|
A git tag with the version is pushed to git whenever the version is bumped and
|
28
28
|
deployed in production. `git tag` will show you the format of the tag(e.g. 0.0.30)
|
29
29
|
|
30
|
+
## Local Dev:
|
31
|
+
Execute: sh deployment/local/build.sh
|
32
|
+
- FireStore: http://127.0.0.1:4007/firestore/
|
33
|
+
- App: http://127.0.0.1/
|
@@ -14,3 +14,7 @@ the version number in src/otter_service_stdalone/__init__.py before a new build.
|
|
14
14
|
A git tag with the version is pushed to git whenever the version is bumped and
|
15
15
|
deployed in production. `git tag` will show you the format of the tag(e.g. 0.0.30)
|
16
16
|
|
17
|
+
## Local Dev:
|
18
|
+
Execute: sh deployment/local/build.sh
|
19
|
+
- FireStore: http://127.0.0.1:4007/firestore/
|
20
|
+
- App: http://127.0.0.1/
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.1.26"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: otter_service_stdalone
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.26
|
4
4
|
Summary: Grading Service for Instructors using Otter Grader
|
5
5
|
Home-page: https://github.com/sean-morris/otter-service-stdalone
|
6
6
|
Author: Sean Morris
|
@@ -27,3 +27,7 @@ the version number in src/otter_service_stdalone/__init__.py before a new build.
|
|
27
27
|
A git tag with the version is pushed to git whenever the version is bumped and
|
28
28
|
deployed in production. `git tag` will show you the format of the tag(e.g. 0.0.30)
|
29
29
|
|
30
|
+
## Local Dev:
|
31
|
+
Execute: sh deployment/local/build.sh
|
32
|
+
- FireStore: http://127.0.0.1:4007/firestore/
|
33
|
+
- App: http://127.0.0.1/
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.1.25"
|
File without changes
|
File without changes
|
File without changes
|
{otter_service_stdalone-0.1.25 → otter_service_stdalone-0.1.26}/src/otter_service_stdalone/app.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|