summaryrefslogtreecommitdiffstats
path: root/.gitignore
blob: 9ec2365cae63d022d430a7489bab55d59fdc7bf4 (plain)
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
# Tags
.tags
.tags1

# Tower
awx/settings/local_settings.py*
awx/*.sqlite3
awx/*.sqlite3_*
awx/job_status
awx/projects
awx/job_output
awx/public/media
awx/public/static
awx/ui/tests/test-results.xml
awx/ui/static/js/awx.min.js
awx/ui/static/js/local_settings.json
awx/ui/client/src/local_settings.json
awx/ui/static/css/awx.min.css
awx/main/fixtures
awx/*.log
tower/tower_warnings.log
celerybeat-schedule
awx/ui/static
awx/ui/build_test

# Tower setup playbook testing
setup/test/roles/postgresql
setup/test/roles/provision_docker

# Python & setuptools
__pycache__
/build
/deb-build
/rpm-build
/tar-build
/setup-bundle-build
/dist
/*.egg-info
*.py[c,o]

# JavaScript
/Gruntfile.js
/Brocfile.js
/bower.json
/package.json
/testem.yml
/coverage
/.istanbul.yml
node_modules/**
/tmp
npm-debug.log

# UI build debugging
/DEBUG

# Testing
.cache
.coverage
.tox
coverage.xml
htmlcov
pep8.txt
scratch
testem.log
awx/awx_test.sqlite3-journal

# Mac OS X
*.DS_Store

# Editors
*.sw[poj]
*~

# Vagrant
/Vagrantfile
tools/vagrant/local.yml
.vagrant*

# Virtualbox
ansible-tower-*-ova
ansible-tower-*.box

# Setup
setup.log
backup.log
restore.log
setup/tower_setup_conf.yml
setup/setup.log
setup/inventory
tower-backup-*

# Other
.tower_cycle
env/*
nohup.out
reports
*.bak
*.bak[0-9]
*.dot
*.log
*.log.[0-9]
*.results
local/

# AWX python libs populated by requirements.txt
awx/lib/.deps_built
awx/lib/site-packages
venv/*