scripticus-server 0.1.0__tar.gz → 0.1.1__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.
- {scripticus_server-0.1.0 → scripticus_server-0.1.1}/PKG-INFO +7 -3
- {scripticus_server-0.1.0 → scripticus_server-0.1.1}/README.md +6 -2
- {scripticus_server-0.1.0 → scripticus_server-0.1.1}/pyproject.toml +1 -1
- {scripticus_server-0.1.0 → scripticus_server-0.1.1}/src/scripticus_server/__init__.py +0 -0
- {scripticus_server-0.1.0 → scripticus_server-0.1.1}/src/scripticus_server/app.py +0 -0
- {scripticus_server-0.1.0 → scripticus_server-0.1.1}/src/scripticus_server/main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: scripticus-server
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A package manager and registry for scripts — index service
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Requires-Dist: fastapi>=0.115
|
|
@@ -38,10 +38,14 @@ balancers and container orchestrators.
|
|
|
38
38
|
|
|
39
39
|
### Docker
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
Server releases publish a Docker image to
|
|
42
|
+
[`kevinchannon/scripticus-server`](https://hub.docker.com/r/kevinchannon/scripticus-server)
|
|
43
|
+
(tagged with the release version and `latest`). The repository ships a
|
|
44
|
+
`docker-compose.yml` running it as a single container — no checkout
|
|
45
|
+
needed:
|
|
43
46
|
|
|
44
47
|
```console
|
|
48
|
+
$ curl -LO https://raw.githubusercontent.com/kevinchannon/scripticus/main/docker-compose.yml
|
|
45
49
|
$ docker compose up -d
|
|
46
50
|
$ curl http://localhost:8000/health
|
|
47
51
|
{"status":"ok"}
|
|
@@ -28,10 +28,14 @@ balancers and container orchestrators.
|
|
|
28
28
|
|
|
29
29
|
### Docker
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
Server releases publish a Docker image to
|
|
32
|
+
[`kevinchannon/scripticus-server`](https://hub.docker.com/r/kevinchannon/scripticus-server)
|
|
33
|
+
(tagged with the release version and `latest`). The repository ships a
|
|
34
|
+
`docker-compose.yml` running it as a single container — no checkout
|
|
35
|
+
needed:
|
|
33
36
|
|
|
34
37
|
```console
|
|
38
|
+
$ curl -LO https://raw.githubusercontent.com/kevinchannon/scripticus/main/docker-compose.yml
|
|
35
39
|
$ docker compose up -d
|
|
36
40
|
$ curl http://localhost:8000/health
|
|
37
41
|
{"status":"ok"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|