fujin-cli 0.11.4__py3-none-any.whl → 0.12.0__py3-none-any.whl
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.
Potentially problematic release.
This version of fujin-cli might be problematic. Click here for more details.
- fujin/__init__.py +1 -0
- fujin/__main__.py +3 -2
- fujin/systemd.py +1 -1
- fujin/templates/simple.service +0 -1
- fujin/templates/{gunicorn/web.service → web.service} +4 -4
- fujin/templates/{gunicorn/web.socket → web.socket} +1 -1
- {fujin_cli-0.11.4.dist-info → fujin_cli-0.12.0.dist-info}/METADATA +1 -1
- {fujin_cli-0.11.4.dist-info → fujin_cli-0.12.0.dist-info}/RECORD +11 -12
- fujin/templates/granian/web.service +0 -22
- {fujin_cli-0.11.4.dist-info → fujin_cli-0.12.0.dist-info}/WHEEL +0 -0
- {fujin_cli-0.11.4.dist-info → fujin_cli-0.12.0.dist-info}/entry_points.txt +0 -0
- {fujin_cli-0.11.4.dist-info → fujin_cli-0.12.0.dist-info}/licenses/LICENSE.txt +0 -0
fujin/__init__.py
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.12.0"
|
fujin/__main__.py
CHANGED
|
@@ -7,6 +7,7 @@ import sys
|
|
|
7
7
|
from pathlib import Path
|
|
8
8
|
|
|
9
9
|
import cappa
|
|
10
|
+
import fujin
|
|
10
11
|
|
|
11
12
|
from fujin.commands.app import App
|
|
12
13
|
from fujin.commands.config import ConfigCMD
|
|
@@ -50,9 +51,9 @@ class Fujin:
|
|
|
50
51
|
def main():
|
|
51
52
|
alias_cmd = _parse_aliases()
|
|
52
53
|
if alias_cmd:
|
|
53
|
-
cappa.invoke(Fujin, argv=alias_cmd, version=
|
|
54
|
+
cappa.invoke(Fujin, argv=alias_cmd, version=fujin.__version__)
|
|
54
55
|
else:
|
|
55
|
-
cappa.invoke(Fujin, version=
|
|
56
|
+
cappa.invoke(Fujin, version=fujin.__version__)
|
|
56
57
|
|
|
57
58
|
|
|
58
59
|
def _parse_aliases() -> list[str] | None:
|
fujin/systemd.py
CHANGED
|
@@ -102,7 +102,7 @@ class ProcessManager:
|
|
|
102
102
|
body = (
|
|
103
103
|
local_config.read_text()
|
|
104
104
|
if local_config.exists() and not ignore_local
|
|
105
|
-
else template.format(**context, command=command)
|
|
105
|
+
else template.format(**context, command=command, process_name=name)
|
|
106
106
|
)
|
|
107
107
|
files.append((name, body))
|
|
108
108
|
# if using unix then we are sure a web process was defined and the proxy is not dummy
|
fujin/templates/simple.service
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# All options are documented here https://www.freedesktop.org/software/systemd/man/latest/systemd.exec.html
|
|
2
2
|
# Inspiration was taken from here https://docs.gunicorn.org/en/stable/deploy.html#systemd
|
|
3
3
|
[Unit]
|
|
4
|
-
Description={app_name}
|
|
4
|
+
Description={app_name} {process_name}
|
|
5
5
|
Requires={app_name}.socket
|
|
6
6
|
After=network.target
|
|
7
7
|
|
|
8
8
|
[Service]
|
|
9
|
-
Type=notify
|
|
10
|
-
NotifyAccess=main
|
|
9
|
+
#Type=notify
|
|
10
|
+
#NotifyAccess=main
|
|
11
11
|
User={user}
|
|
12
12
|
Group={user}
|
|
13
13
|
RuntimeDirectory={app_name}
|
|
@@ -22,4 +22,4 @@ PrivateTmp=true
|
|
|
22
22
|
ProtectSystem=strict
|
|
23
23
|
|
|
24
24
|
[Install]
|
|
25
|
-
WantedBy=multi-user.target
|
|
25
|
+
WantedBy=multi-user.target
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fujin-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.12.0
|
|
4
4
|
Summary: Get your project up and running in a few minutes on your own vps.
|
|
5
5
|
Project-URL: Documentation, https://github.com/falcopackages/fujin#readme
|
|
6
6
|
Project-URL: Issues, https://github.com/falcopackages/fujin/issues
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
fujin/__init__.py,sha256=
|
|
2
|
-
fujin/__main__.py,sha256=
|
|
1
|
+
fujin/__init__.py,sha256=eHjt9DPsMbptabS2yGx9Yhbyzq5hFSUHXb7zc8Q_8-o,23
|
|
2
|
+
fujin/__main__.py,sha256=KesDQurQ6HNMWBlxBLiSesgLHr6roUko3lgVh1pQNu8,1880
|
|
3
3
|
fujin/config.py,sha256=t7UnhQMl-wYDyFCIcOC5lLdfpSmYWDIRPHvozoSoVME,11707
|
|
4
4
|
fujin/connection.py,sha256=LL7LhX9p0X9FmiGdlSroD3Ht216QY0Kd51xkSrXmM3s,2479
|
|
5
5
|
fujin/errors.py,sha256=74Rh-Sgql1YspPdR_akQ2G3xZ48zecyafYCptpaFo1A,73
|
|
6
6
|
fujin/hooks.py,sha256=EDVYNozlDJ5kc1xHtZrXgtuKplUMEMPTp65TLMP02Ek,1449
|
|
7
|
-
fujin/systemd.py,sha256=
|
|
7
|
+
fujin/systemd.py,sha256=pHhnIkQppR9d_usP942DcSinADl-jpghPg-0jjvB3S4,6659
|
|
8
8
|
fujin/commands/__init__.py,sha256=g0b13vzidPUbxne_Zo_Wv5jpEmwCiSK4AokCinH9uo4,39
|
|
9
9
|
fujin/commands/_base.py,sha256=2k9HGcxskFZQ7qYw8hcJh_73EZ_qVngLot7lOo2hQuw,2193
|
|
10
10
|
fujin/commands/app.py,sha256=mazb4dCTdR5juh79bL3a9b68Nd6O8u_nR9IgYqQlqWE,5279
|
|
@@ -29,12 +29,11 @@ fujin/secrets/bitwarden.py,sha256=01GZL5hYwZzL6yXy5ab3L3kgBFBeOT8i3Yg9GC8YwFU,20
|
|
|
29
29
|
fujin/secrets/dopppler.py,sha256=t5SGfyuA0RxsD9uvrAu4cG2TBDIUgB5gb6XYXPrd61Y,724
|
|
30
30
|
fujin/secrets/onepassword.py,sha256=6Xj3XWttKfcjMbcoMZvXVpJW1KHxlD785DysmX_mqvk,654
|
|
31
31
|
fujin/secrets/system.py,sha256=Z5uNc2V3rcR75ffBnOsJywndoWuDcih88O9nPXIJ3U0,382
|
|
32
|
-
fujin/templates/simple.service,sha256=
|
|
33
|
-
fujin/templates/
|
|
34
|
-
fujin/templates/
|
|
35
|
-
|
|
36
|
-
fujin_cli-0.
|
|
37
|
-
fujin_cli-0.
|
|
38
|
-
fujin_cli-0.
|
|
39
|
-
fujin_cli-0.
|
|
40
|
-
fujin_cli-0.11.4.dist-info/RECORD,,
|
|
32
|
+
fujin/templates/simple.service,sha256=1Hp8GfpBevULTaBMHAimdBPPee4W1tStQyKP2xQ0hHE,329
|
|
33
|
+
fujin/templates/web.service,sha256=oOWLWonMl258xxNCYwGXHta427D86p2rH15cxkpHcLc,692
|
|
34
|
+
fujin/templates/web.socket,sha256=f-gq8g1loYkWEDq_30sNtgDdPX0lwddK0jQDQzHLuus,172
|
|
35
|
+
fujin_cli-0.12.0.dist-info/METADATA,sha256=7OFp7OpSInm-TgVlt5VjKOA5MF9VfNoljdJWfJRR2QI,4603
|
|
36
|
+
fujin_cli-0.12.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
37
|
+
fujin_cli-0.12.0.dist-info/entry_points.txt,sha256=Y_TBtKt3j11qhwquMexZR5yqnDEqOBDACtresqQFE-s,46
|
|
38
|
+
fujin_cli-0.12.0.dist-info/licenses/LICENSE.txt,sha256=0QF8XfuH0zkIHhSet6teXfiCze6JSdr8inRkmLLTDyo,1099
|
|
39
|
+
fujin_cli-0.12.0.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# All options are documented here https://www.freedesktop.org/software/systemd/man/latest/systemd.exec.html
|
|
2
|
-
# Inspiration was taken from here https://docs.gunicorn.org/en/stable/deploy.html#systemd
|
|
3
|
-
[Unit]
|
|
4
|
-
Description={app_name} daemon
|
|
5
|
-
After=network.target
|
|
6
|
-
|
|
7
|
-
[Service]
|
|
8
|
-
User={user}
|
|
9
|
-
Group={user}
|
|
10
|
-
RuntimeDirectory={app_name}
|
|
11
|
-
WorkingDirectory={app_dir}
|
|
12
|
-
ExecStart={app_dir}/{command}
|
|
13
|
-
EnvironmentFile={app_dir}/.env
|
|
14
|
-
ExecReload=/bin/kill -s HUP $MAINPID
|
|
15
|
-
KillMode=mixed
|
|
16
|
-
TimeoutStopSec=5
|
|
17
|
-
PrivateTmp=true
|
|
18
|
-
# if your app does not need administrative capabilities, let systemd know
|
|
19
|
-
ProtectSystem=strict
|
|
20
|
-
|
|
21
|
-
[Install]
|
|
22
|
-
WantedBy=multi-user.target
|
|
File without changes
|
|
File without changes
|
|
File without changes
|