-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
62 lines (54 loc) · 1.22 KB
/
.gitignore
File metadata and controls
62 lines (54 loc) · 1.22 KB
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
# ============================================
# DEPENDENCIES
# ============================================
/miner/node_modules/
/webapp/node_modules/
/webapp-turbo/node_modules/
tests/node_modules
# ============================================
# BUILD ARTIFACTS
# ============================================
# Rust/Cargo
debug/
target/
**/*.rs.bk
*.pdb
**/mutants.out*/
# JavaScript/Vite
webapp/src/dist
/webapp/dist/
/webapp-turbo/dist/
# WASM
bro-token/src/wasm/bro-token.wasm
# ============================================
# ENVIRONMENT & SECRETS
# ============================================
.env
.env.local
# ============================================
# TESTS & DEVELOPMENT
# ============================================
tests/block-proof
tests/block-proof/bitcoinjs-test
tests/commitTx
tests/wasm/*.wasm
tests/wasm/*.json
tests/mining
tests/payloads
tests/check-nonceXXX
webapp/src/assets/test/prover-txs.ts
# ============================================
# IDE & OS
# ============================================
.DS_Store
# JetBrains IDEs (RustRover, IntelliJ, etc.)
.idea/
*.iml
*.iws
*.ipr
out/
# ============================================
# PROJECT SPECIFIC
# ============================================
Contract/
_rjj/