forked from grapl-security/grapl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
71 lines (57 loc) · 1.2 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
# Mac OS
.DS_Store
# No swap files pls
*.swp
# Test outputs
test/integration-outputs
# Artifacts dumped from `make dump-artifacts-local` script
/test_artifacts/
# Environments
.env
venv/
# Python misc
__pycache__/
*.py[cod]
*$py.class
.mypy_cache
.hypothesis
.pytype/
# Rust outputs
target/
# Node packages
# This exists to keep the existence of the node_modules directory in git.
node_modules/
# corepack installs the node version in .node. Kinda annoying but makes sense since its not yarn-specific
.node/
# Nomad/Consul artifacts
# This is a generated config file for local grapl
nomad/local/mount-grapl-root-as-volume.nomad
nomad/local/consul-dynamic-conf.hcl
# Distribution / packaging
*.zip
/dist/
# IDE files
*.code-workspace
*.vscode
.idea/
*.iml
/tags
/tags.lock
/tags.temp
.log
pyrightconfig.json
# Pants-related artifacts
# https://www.pantsbuild.org/docs/gitignore
########################################################################
/.pants.d/
/.pids
/.pants.workdir.file_lock*
# See build-support/manage_virtualenv.sh
/build-support/grapl-venv
# Generated when profiling rust code
*.profdata
*.profraw
# Devbox pulumi stacks
devbox/provision/Pulumi.*.yaml
### PERSONAL SCRIPTS
upload_localhost.sh