File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,18 @@ To manually install this project, simply run the following:
21
21
22
22
$ git clone https://github.com/PyFunceble/web-worker.git pyfunceble-web-worker
23
23
$ cd pyfunceble-web-worker
24
- $ pip3 install --user PyFunceble-dev uvicorn
24
+ $ pip3 install --user PyFunceble-dev uvicorn[standard]
25
25
$ pip3 install --user .
26
26
27
+ GitHub Packages
28
+ """""""""""""""
29
+
30
+ To pull the docker image, simply run the following:
31
+
32
+ ::
33
+
34
+ $ docker pull ghcr.io/pyfunceble/web-worker/web-worker:latest
35
+
27
36
Docker (self-build)
28
37
"""""""""""""""""""
29
38
@@ -60,7 +69,17 @@ To start the project, simply run or adapt the following:
60
69
::
61
70
62
71
$ cd pyfunceble-web-worker
63
- $ uvicorn pyfunceble_webworker.main:app
72
+ $ uvicorn pyfunceble_webworker.main:app --host 0.0.0.0 --port 80
73
+
74
+ GitHub Packages
75
+ """""""""""""""
76
+
77
+ To start the project after pulling it from the GitHub Packages, simply run or
78
+ adapt the following:
79
+
80
+ ::
81
+
82
+ $ docker run -v pyfunceble-worker-data:/data -d --name [my-awesome-name] -p [my-port]:80 ghcr.io/pyfunceble/web-worker/web-worker:latest
64
83
65
84
Docker (self-built)
66
85
"""""""""""""""""""
You can’t perform that action at this time.
0 commit comments