-
Notifications
You must be signed in to change notification settings - Fork 20
/
.gitignore
100 lines (80 loc) · 2.09 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# emacs temporary files
*~
# this folder is populated by Rakefile with various tools needed for development
/tools
# backend binaries
/backend/cmd/stork-agent/stork-agent*
/backend/cmd/stork-server/stork-server*
/backend/cmd/stork-tool/stork-tool*
/backend/cmd/stork-code-gen/stork-code-gen
# generated by protoc
/backend/api/agent.pb.go
/backend/api/agent_grpc.pb.go
# generated by go-swagger
/backend/server/gen/*
# generated by mockgen
/backend/**/*mock_test.go
# vagrant
/.vagrant
# generated documentation
/doc/build
# output from backend unit tests
/backend/coverage.out
/backend/junit.xml
# output from UI unit tests
/webui/junit.xml
# ctags
TAGS
# generated while combining whole swagger API
/api/swagger.yaml
# venv for dhcp traffic simulator
/tests/sim/venv
/tests/sim/__pycache__/
# files created by running docker containers
/backend/cmd/stork-agent/supervisord.log
/backend/cmd/stork-agent/supervisord.pid
docker/config/agent-kea-many-subnets/kea-dhcp4.conf
# generated docs
/doc/man/stork-*.8
/webui/src/assets/arm/
/webui/src/assets/pkgs/
# build stuff
/build-root
/.pkgs-build
/dist
**/.bundle/config
# Protoc generated files
/backend/api/stork/backend/api/agent/protocol/agent.pb.go
/tests/system/agent_pb2.py
/tests/system/agent_grpc.py
# tests venv and pycache
/tests/system/venv/
/tests/system/test-results/
.vscode/
/isc-stork-*.deb
/isc-stork-*.rpm
*.code-workspace
root/
tests/system/.env/
test-results/
__pycache__/
tests/system/config/kea-many-subnets/*.conf
tests/system/config/kea/kea-leases4.csv
tests/system/config/kea/kea-leases6.csv
tests/system/config/kea-ha2/kea-leases4.csv
tests/system/config/kea-ha2/kea-leases6.csv
tests/system/config/certs/key.pem
tests/system/config/certs/cert.pem
# OpenAPI generator files for Python
tests/system/openapi_client/
tests/system/.openapi-generator/
tests/system/.openapi-generator-ignore
tests/system/openapi_client_README.md
webui/documentation.json
# Code-gen generated files
backend/appcfg/kea/stdoptiondef4.go
backend/appcfg/kea/stdoptiondef6.go
webui/src/app/std-dhcpv4-option-defs.ts
webui/src/app/std-dhcpv6-option-defs.ts
# Hooks
/hooks/*.so