-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
65 lines (54 loc) · 926 Bytes
/
.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
#Eclipse stuff
.project
# Vim temporary files.
*.swp
*.swn
*.swo
# VSCode configurtaion
.vscode
# Compiled files
*.o
*.so
*.rlib
*.dll
# Executables
*.exe
# Voxel map data (until I think of a better file extension)
*.bin
/target/map/
/map/
# Other data generated at runtime.
config.ron
client_config.ron
client.ron
/keys/
/target/keys/
/temp/
/logs/
/protocol/
/worlds/
#Running tests from inside of VSCodium does this sometimes.
/gestalt-core/protocol/
/gestalt-core/keys/
/gestalt-core/logs/
/gestalt-core/worlds/
/gestalt-core/temp/
/gestalt-core/cache/
# Logs
log.csv
gestalt/log.csv
latest.log
# Generated by Cargo
/target/
/obj/
/gestalt/target/
/hemlock/target/
/target/
# IDEA project stuff
.idea
*.iml
# Informal notes (I should use Github tasks soon)
todo.md
# Generated code
/gestalt-names/src/generated/
/gestalt-core/src/net/generated.rs