-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
61 lines (47 loc) · 1.25 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
# editor droppings
*.sw[po]
*~
# Cargo build directory
target/
# personal development notes
notes.txt
# Python bytecode
__pycache__/
*.pyc
# "Chess" (?) board download zipball and unpacked resources (very
# important, but we're not vendorizing them into the repo)
web_client/resources/chessboardjs-0.3.0.zip
web_client/resources/public/css/chessboard-0.3.0.css
web_client/resources/public/css/chessboard-0.3.0.min.css
web_client/resources/public/js/chessboard-0.3.0.js
web_client/resources/public/js/chessboard-0.3.0.min.js
# Underscore
web_client/resources/public/js/underscore-min.js
# polyfill for ECMAScript 6 generators
web_client/resources/public/js/regenerator.js
# boring, mainstream JavaScript compiled from cool new ECMAScript 6
web_client/resources/public/js/client-built.js
# virtualenv droppings (yes, I know this isn't even a Python project; humor me)
.Python
include/
local/
bin/
lib/
lib64
pyvenv.cfg
pip-selfcheck.json
# npm droppings (yes, I know this isn't even a Node project; humor me)
node_modules/
# we build these
src/motion.rs
src/landmark.rs
# perf profiling data
perf.data
perf.data.old
# Vagrant
.vagrant/
# copies of built binary/jar awaiting provisioning
provisioning/leafline
provisioning/leafline-web-client.jar
# log file
leafline.log