-
Notifications
You must be signed in to change notification settings - Fork 13
/
.gitignore
132 lines (106 loc) · 1.74 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
.DS_Store
.Trashes
.idea
*.swp
*.pkg
.vscode
# Python artifacts
*.pyc
kite-python/dist
kite-python/build
kite-python/kite.egg-info
# node.js
node_modules/
npm-debug.log
.module-cache/
# js files bundled into one (for webpack modules)
bundle.min.js
bundle.min.js.map
test.min.js
test.min.js.map
# ignore libkited build directory
osx/libkited
# ignore electron build (for Xcode)
osx/electron
# ignore kite-lsp build directory (for Xcode)
osx/kitelsp
# some bindatas should be regenerated before every build:
kite-go/webappui/bindata.go
kite-go/kitecomui/bindata.go
backend/build
backend/Makefile.generated
osx/build
osx/pkgs
osx/bundles
# ignore Linux build artifacts
scripts/builds/
# less-watch automatically builds this file, which is useless:
client-ui/css/theme-dark.css
Godeps/Readme
Godeps/_workspace
golint.test
gofmt.test
coverage.txt
# Vagrant
*.box
*.vagrant
# Terraform
dev.tfvars
*.tfstate.backup
devops/fabric/backup
# Enterprise
enterprise/build
# Puppet
devops/puppet-kite/pkg
# Packer
devops/packer-templates/scripts/docker-config.sh
.artifacts
kite-python.tar.gz
parse
!parse/
scan
!scan/
merge-import-graphs
!merge-import-graphs/
# standard name for virtual envs
venv/
# Visual Studio
*.suo
*.user
*.userosscache
*.sln.docstates
.vs/
*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/
# ignore tensorflow files copied from linux/tensorflow/lib/ to simplify running kited on linux
/libtensorflow.so
/libtensorflow_framework.so
# ignore kited binary, e.g. compiled during development
/kited