haraka 0.2.15__py3-none-any.whl → 0.2.17__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.
- haraka/post_gen/service/files.py +0 -1
- haraka/utils/manifests/go-grpc-protoc.yml +8 -0
- haraka/utils/manifests/java-springboot.yml +6 -0
- haraka/utils/manifests/python-fastapi.yml +4 -0
- {haraka-0.2.15.dist-info → haraka-0.2.17.dist-info}/METADATA +1 -1
- {haraka-0.2.15.dist-info → haraka-0.2.17.dist-info}/RECORD +8 -8
- {haraka-0.2.15.dist-info → haraka-0.2.17.dist-info}/WHEEL +0 -0
- {haraka-0.2.15.dist-info → haraka-0.2.17.dist-info}/top_level.txt +0 -0
haraka/post_gen/service/files.py
CHANGED
@@ -57,7 +57,6 @@ class FileOps:
|
|
57
57
|
self.logger.debug(f"Found {len(entries)} entries in directory {self._relpath(path)}")
|
58
58
|
for i, entry in enumerate(entries):
|
59
59
|
branch = "└── " if i == len(entries) - 1 else "├── "
|
60
|
-
self.logger.debug(f"Processing entry: {entry.name} ({'directory' if entry.is_dir() else 'file'})")
|
61
60
|
print(prefix + branch + entry.name)
|
62
61
|
if entry.is_dir():
|
63
62
|
ext = " " if i == len(entries) - 1 else "│ "
|
@@ -2,14 +2,19 @@ variant: go-grpc-protoc
|
|
2
2
|
|
3
3
|
keep:
|
4
4
|
# ── application source (Go) ─────────────────────────
|
5
|
+
- cmd/
|
5
6
|
- cmd/**
|
7
|
+
- internal/
|
6
8
|
- internal/**
|
9
|
+
- pkg/proto/
|
7
10
|
- pkg/proto/**
|
11
|
+
- configs/
|
8
12
|
- configs/**
|
9
13
|
- go.mod
|
10
14
|
- git.ignore
|
11
15
|
|
12
16
|
# ── tests ───────────────────────────────────────────
|
17
|
+
- test/
|
13
18
|
- test/**
|
14
19
|
|
15
20
|
# ── build & project metadata ────────────────────────
|
@@ -18,9 +23,12 @@ keep:
|
|
18
23
|
- README.md
|
19
24
|
|
20
25
|
# ── IDE / run configs ───────────────────────────────
|
26
|
+
- runConfigurations/Go/
|
21
27
|
- runConfigurations/Go/**
|
22
28
|
|
23
29
|
# ── deployment & infra (shared) ─────────────────────
|
24
30
|
- skaffold.yaml
|
31
|
+
- chart/
|
25
32
|
- chart/**
|
33
|
+
- infra/
|
26
34
|
- infra/**
|
@@ -2,10 +2,13 @@ variant: java-springboot
|
|
2
2
|
|
3
3
|
keep:
|
4
4
|
# ── application source ────────────────────────────
|
5
|
+
- src/main/java/
|
5
6
|
- src/main/java/**
|
7
|
+
- src/main/resources/
|
6
8
|
- src/main/resources/**
|
7
9
|
|
8
10
|
# ── tests ─────────────────────────────────────────
|
11
|
+
- src/test/java/
|
9
12
|
- src/test/java/**
|
10
13
|
|
11
14
|
# ── build & project metadata ──────────────────────
|
@@ -15,9 +18,12 @@ keep:
|
|
15
18
|
- README.md
|
16
19
|
|
17
20
|
# ── IDE / run configs ─────────────────────────────
|
21
|
+
- runConfigurations/SpringBoot/
|
18
22
|
- runConfigurations/SpringBoot/**
|
19
23
|
|
20
24
|
# ── deployment & infra (shared) ───────────────────
|
21
25
|
- skaffold.yaml
|
26
|
+
- chart/
|
22
27
|
- chart/**
|
28
|
+
- infra/
|
23
29
|
- infra/**
|
@@ -2,9 +2,11 @@ variant: python-fastapi
|
|
2
2
|
|
3
3
|
keep:
|
4
4
|
# ── application source ─────────────────────────────
|
5
|
+
- src/app/
|
5
6
|
- src/app/**
|
6
7
|
|
7
8
|
# ── tests ──────────────────────────────────────────
|
9
|
+
- tests/
|
8
10
|
- tests/**
|
9
11
|
- pytest.ini
|
10
12
|
|
@@ -19,5 +21,7 @@ keep:
|
|
19
21
|
|
20
22
|
# ── deployment & infra (shared) ────────────────────
|
21
23
|
- skaffold.yaml
|
24
|
+
- chart/
|
22
25
|
- chart/**
|
26
|
+
- infra/
|
23
27
|
- infra/**
|
@@ -14,7 +14,7 @@ haraka/post_gen/config/config.py,sha256=nmsQ19ONWE76GFQtah_PUO1HygE-ZCCOfK03M-t-
|
|
14
14
|
haraka/post_gen/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
15
|
haraka/post_gen/service/assets.py,sha256=-oz3vlBaVOjeCOO2QHRvOmfyurR1KgihqXqbTtxDNG4,461
|
16
16
|
haraka/post_gen/service/command.py,sha256=yvEzW9rMSXWeQ_2DXuQNtGH6sRuZnK6viMud-amFQXw,2348
|
17
|
-
haraka/post_gen/service/files.py,sha256=
|
17
|
+
haraka/post_gen/service/files.py,sha256=7AKGNqW19BkQfYgds2FDjtIsWLSNPaoqEqqZKUsK68k,3203
|
18
18
|
haraka/post_gen/service/gitops.py,sha256=UHJFEGrz88NTB0-WKge_AiKO_yLFci6A7AM5kBIy0VQ,4029
|
19
19
|
haraka/post_gen/service/purge.py,sha256=eDH5DLwaViu3jsqtPXeJWxS_Fs7RIEq6RKD8A8ny2vE,3536
|
20
20
|
haraka/utils/__init__.py,sha256=3Cp4u0dyAGcmqes-tIr95KFsNsJx5Ji5Yzkto9546Hs,168
|
@@ -23,10 +23,10 @@ haraka/utils/common/utils.py,sha256=kMnMXe_hcxGkD0MKGmR1lIwsRND7BaFPRbGN4PwonfM,
|
|
23
23
|
haraka/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
24
|
haraka/utils/logging/log_util.py,sha256=Pf5uuxPfeaQDygOy3AWVj2W_4QSKM6V4FCHCJk6KypY,961
|
25
25
|
haraka/utils/manifests/go-grpc-gateway-buf.yml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
haraka/utils/manifests/go-grpc-protoc.yml,sha256=
|
27
|
-
haraka/utils/manifests/java-springboot.yml,sha256=
|
28
|
-
haraka/utils/manifests/python-fastapi.yml,sha256=
|
29
|
-
haraka-0.2.
|
30
|
-
haraka-0.2.
|
31
|
-
haraka-0.2.
|
32
|
-
haraka-0.2.
|
26
|
+
haraka/utils/manifests/go-grpc-protoc.yml,sha256=aR-Tv6iIcBzni3jbTg10wvceydBdk07fM7y3QcK1B8k,948
|
27
|
+
haraka/utils/manifests/java-springboot.yml,sha256=WzcaStDgzyWmBhV2TUiYEkxHhYwydN9ww2yjZYyhSmw,929
|
28
|
+
haraka/utils/manifests/python-fastapi.yml,sha256=FKHV0G53I0hoqAVmvoB18rVxw7PiVB_yjSwd_urXgn0,860
|
29
|
+
haraka-0.2.17.dist-info/METADATA,sha256=fpze37OyA_UIRC5cZcjQfo7vi-07ljcqBVr4-Egb2ig,579
|
30
|
+
haraka-0.2.17.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
31
|
+
haraka-0.2.17.dist-info/top_level.txt,sha256=1khpwypLKWoklVd_CgFiwAfcctVSXRoRPc3BI9lyIXo,7
|
32
|
+
haraka-0.2.17.dist-info/RECORD,,
|
File without changes
|
File without changes
|