Skip to content

Commit eb6a2e3

Browse files
committedFeb 24, 2017
squash commits
0 parents  commit eb6a2e3

File tree

812 files changed

+135373
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

812 files changed

+135373
-0
lines changed
 

‎.gitignore

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
*.py[cod]
2+
*.swp
3+
4+
# C extensions
5+
*.so
6+
7+
# Packages
8+
*.egg
9+
*.egg-info
10+
dist
11+
build
12+
eggs
13+
parts
14+
bin
15+
var
16+
sdist
17+
develop-eggs
18+
.installed.cfg
19+
lib
20+
lib64
21+
__pycache__
22+
23+
# Installer logs
24+
pip-log.txt
25+
26+
# Unit test / coverage reports
27+
.coverage
28+
.tox
29+
nosetests.xml
30+
31+
# Translations
32+
*.mo
33+
34+
# Mr Developer
35+
.mr.developer.cfg
36+
.project
37+
.pydevproject
38+
39+
# SQLite databases
40+
*.sqlite
41+
42+
# Virtual environment
43+
venv
44+
45+
# boto config
46+
.boto
47+
48+
# development api key file
49+
variables.sh
50+
51+
# Ignore local vagrant cache
52+
.vagrant/
53+
vagrant-venv/
54+
55+
# some stuff from the GAE repo
56+
#
57+
lib/
58+
!lib/README.md
59+
.DS_Store
60+
61+
# NPM shit we don't need
62+
node_modules/
63+
npm-debug.log
64+
65+
data.sqlite
66+
user.txt
67+
68+
app/static/compiled/*
69+
app/static/.webassets-cache/*
70+
app/static/stylesheets/*
71+
72+
# artifacts from tests
73+
.cache/*

0 commit comments

Comments
 (0)