tangled
alpha
login
or
join now
quietengineer.fyi
/
pdsadmin
0
fork
atom
Go implementation of pdsadmin cli
0
fork
atom
overview
issues
1
pulls
pipelines
chore: add go ignores
quietengineer.fyi
6 months ago
95072dba
62d56094
+32
-1
1 changed file
expand all
collapse all
unified
split
.gitignore
+32
-1
.gitignore
···
1
1
-
node_modules
1
1
+
# Binaries for programs and plugins
2
2
+
*.exe
3
3
+
*.exe~
4
4
+
*.dll
5
5
+
*.so
6
6
+
*.dylib
7
7
+
8
8
+
# Test binary, built with `go test -c`
9
9
+
*.test
10
10
+
11
11
+
# Code coverage profiles and other test artifacts
12
12
+
*.out
13
13
+
coverage.*
14
14
+
*.coverprofile
15
15
+
profile.cov
16
16
+
17
17
+
# Dependency directories
18
18
+
vendor/
19
19
+
20
20
+
# Go workspace file
21
21
+
go.work
22
22
+
go.work.sum
23
23
+
24
24
+
# goreleaser
25
25
+
dist/
26
26
+
27
27
+
# env file
28
28
+
*.env
29
29
+
30
30
+
# Editor/IDE
31
31
+
.idea/
32
32
+
.vscode/