-
Notifications
You must be signed in to change notification settings - Fork 55
/
.gitignore
76 lines (63 loc) · 1.21 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
# for python
*.pyc
# for web
frontend/web/node_modules
frontend/web/dist
frontend/web/app/styles/main.css
web/.sass-cache/
web/.tmp/
# other
.idea/
*~
venv/
# for source deployment
build/
dist/
*.egg-info/
# for tests
frontend/tests/results/
brain/tests/results/
probe/tests/results/
.coverage
*/cover
*/coverage.xml
*/nosetests.xml
# for docs
docs/_build
# configuration
frontend/config/*.ini
brain/config/*.ini
probe/config/*.ini
# ssl certificate
frontend/ssl/*.pem
brain/ssl/*.pem
probe/ssl/*.pem
# ansible
ansible/.vagrant/
ansible/hosts/*
ansible/vagrant_ansible_inventory_default
ansible/roles/franklinkim.sudo/
ansible/roles/franklinkim.ufw/
ansible/roles/jdauphant.nginx/
ansible/roles/Mayeu.RabbitMQ/
ansible/roles/mivok0.users/
ansible/roles/ANXS.postgresql/
ansible/roles/gdamjan.uwsgi/
ansible/roles/willshersystems.sshd
ansible/infras
ansible/files/*
!files/.gitkeep
# Ignore AV licence file
ansible/playbooks/files/license.avastlic
ansible/playbooks/files/*.zip
ansible/roles/quarkslab.avast/files/license.avastlic
# Ignore only stable group_vars
ansible/group_vars/all
ansible/group_vars/brain
ansible/group_vars/frontend
ansible/group_vars/probe
# For packaging
MANIFEST
MANIFEST.in
# OSX files
.DS_STORE