gitextract_u1zhqynq/ ├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── base/ │ ├── __init__.py │ ├── models.py │ ├── static/ │ │ ├── crossdomain.xml │ │ ├── css/ │ │ │ ├── app.css │ │ │ ├── h5bp.css │ │ │ └── style.css │ │ ├── humans.txt │ │ ├── js/ │ │ │ ├── main.js │ │ │ └── plugins.js │ │ └── robots.txt │ ├── templates/ │ │ ├── 403.html │ │ ├── 404.html │ │ ├── 500.html │ │ ├── _layouts/ │ │ │ └── base.html │ │ └── base/ │ │ └── home.html │ ├── urls.py │ └── views.py ├── bin/ │ ├── git_precommit_pycheck.py │ └── jenkins.sh ├── conf/ │ ├── nginx-mime.types │ ├── nginx.conf │ ├── supervisord.conf │ ├── upstart.conf │ └── uwsgi.ini ├── docs/ │ ├── Makefile │ ├── __init__.py │ ├── _static/ │ │ └── .keep │ ├── _templates/ │ │ └── .keep │ ├── build-github.zsh │ ├── conf.py │ ├── index.rst │ └── make.bat ├── fabfile.py ├── install_requirements.sh ├── lib/ │ └── .keep ├── manage.py ├── project_name/ │ ├── __init__.py │ ├── settings/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── local-dist.py │ │ └── test.py │ ├── urls.py │ └── wsgi.py ├── requirements/ │ ├── compiled.txt │ ├── local.txt │ └── production.txt └── requirements.txt