forked from hoprnet/hoprnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
102 lines (81 loc) · 1.82 KB
/
.dockerignore
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
101
102
/node_modules
/packages/*/node_modules
**/.DS_Store
/.bin
/build
# Exclude databases resulting from local execution of hoprd
/db
/*.swp
/test/local-fixtures
# logs
*.log
logs.txt
# we need to specify the direct paths since act only supports strict git ignore checks
/.direnv
# yarn v2 specific
/.yarn/*
!/.yarn/patches
!/.yarn/releases
!/.yarn/plugins
!/.yarn/sdks
!/.yarn/versions
/.pnp.*
# Typescript build info resulting from Typescript Project References
# see https://www.typescriptlang.org/docs/handbook/project-references.html
**/*.tsbuildinfo
.dockerignore
.git
.gitignore
# generated JS files
packages/*/lib/
# generated docs
packages/*/docs/
# generated wasm files
packages/*/crates/*/pkg
# hoprd artifacts
/packages/hoprd/db
/packages/hoprd/hoprd-db
# ethereum anvil artifacts
/packages/ethereum/contracts/out
/packages/ethereum/contracts/cache
/packages/ethereum/contracts/broadcast/*.*/*/*
!/packages/ethereum/contracts/broadcast/*.*/*/run-latest.json
/packages/ethereum/contracts/broadcast/*.*/31337
/packages/ethereum/contracts/build-info/
# docusaurus builds
/docs/hopr-documentation/build
/docs/hopr-documentation/.docusaurus
# vagrant metadata
/scripts/vm-nat-testing/.vagrant
# make sure anything which is vendored is copied
!/vendor/**/*.log
# ignore file generated by TSC
/packages/**/*.*.map
/packages/**/*.*.*.map
/packages/**/*.js
/packages/**/*.d.ts
/packages/**/*.mts
/packages/**/*.mjs
/packages/**/*.cts
/packages/**/*.cjs
/scripts/**/*.*.map
/scripts/**/*.*.*.map
/scripts/**/*.js
/scripts/**/*.d.ts
/scripts/**/*.mts
/scripts/**/*.mjs
/scripts/**/*.cts
/scripts/**/*.cjs
!/packages/hoprd/src/main.cts
# Avado package builds
/packages/avado/build_*
# local foundry installation
/.foundry/
/target-install/
# cargo files
/.cargo/lib
/.cargo/bin
/.cargo/.package-cache
/.cargo/.crates.toml
/.cargo/.crates2.json
.venv/