tangled
alpha
login
or
join now
zenfyr.dev
/
xpost
2
fork
atom
social media crossposting tool. 3rd time's the charm
mastodon
misskey
crossposting
bluesky
2
fork
atom
overview
issues
1
pulls
pipelines
update .*ignore files
zenfyr.dev
1 month ago
e14e6786
aa2d8e3b
verified
This commit was signed with the committer's
known signature
.
zenfyr.dev
SSH Key Fingerprint:
SHA256:TtcIcnTnoAB5mqHofsaOxIgiMzfVBxej1AXT7DQdrTE=
+14
-11
2 changed files
expand all
collapse all
unified
split
.dockerignore
.gitignore
+10
-2
.dockerignore
···
6
6
wheels/
7
7
*.egg-info
8
8
.pytest_cache/
9
9
-
10
10
-
# Virtual environments
11
9
.venv/
10
10
+
.mypy_cache/
11
11
+
.ruff_cache/
12
12
+
.coverage
13
13
+
htmlcov/
12
14
13
15
# Random junk
14
16
.env
···
16
18
.DS_Store
17
19
data/
18
20
testdata/
21
21
+
22
22
+
# IDE
23
23
+
.idea/
24
24
+
.vscode/
25
25
+
*.swp
26
26
+
*.swo
+4
-9
.gitignore
···
6
6
wheels/
7
7
*.egg-info
8
8
.pytest_cache/
9
9
-
10
10
-
# Virtual environments
11
9
.venv/
10
10
+
.mypy_cache/
11
11
+
.ruff_cache/
12
12
+
.coverage
13
13
+
htmlcov/
12
14
13
15
# Random junk
14
16
.env
···
16
18
.DS_Store
17
19
data/
18
20
testdata/
19
19
-
20
20
-
# Type checking
21
21
-
.mypy_cache/
22
22
-
23
23
-
# Coverage
24
24
-
.coverage
25
25
-
htmlcov/
26
21
27
22
# IDE
28
23
.idea/