mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 23:12:08 -03:30
Added tarballs for third-party Python dependencies, updated requirements, added optional django-debug-toolbar support.
This commit is contained in:
parent
bbdfe8bc46
commit
65c8176507
@ -172,6 +172,21 @@ EMAIL_HOST_USER = ''
|
||||
EMAIL_HOST_PASSWORD = ''
|
||||
EMAIL_USE_TLS = False
|
||||
|
||||
# Use Django-Debug-Toolbar if installed.
|
||||
try:
|
||||
import debug_toolbar
|
||||
INSTALLED_APPS += ('debug_toolbar',)
|
||||
MIDDLEWARE_CLASSES += (
|
||||
'debug_toolbar.middleware.DebugToolbarMiddleware',
|
||||
)
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
DEBUG_TOOLBAR_CONFIG = {
|
||||
'INTERCEPT_REDIRECTS': False,
|
||||
'ENABLE_STACKTRACES' : True,
|
||||
}
|
||||
|
||||
# Use Django-devserver if installed.
|
||||
try:
|
||||
import devserver
|
||||
|
||||
@ -33,7 +33,7 @@
|
||||
pip: name=distribute state=latest
|
||||
|
||||
- name: install python modules via pip
|
||||
pip: requirements=${working_dir}/requirements.txt
|
||||
pip: requirements=${working_dir}/requirements/dev.txt
|
||||
|
||||
- name: configure the database authentication more or less open for setup
|
||||
template: src=templates/pg_hba_low.j2 dest=/var/lib/pgsql/data/pg_hba.conf owner=postgres
|
||||
|
||||
BIN
requirements/Django-1.5.1.tar.gz
Normal file
BIN
requirements/Django-1.5.1.tar.gz
Normal file
Binary file not shown.
BIN
requirements/Markdown-2.3.1.tar.gz
Normal file
BIN
requirements/Markdown-2.3.1.tar.gz
Normal file
Binary file not shown.
BIN
requirements/South-0.8.1.tar.gz
Normal file
BIN
requirements/South-0.8.1.tar.gz
Normal file
Binary file not shown.
BIN
requirements/amqp-1.0.11.tar.gz
Normal file
BIN
requirements/amqp-1.0.11.tar.gz
Normal file
Binary file not shown.
BIN
requirements/anyjson-0.3.3.tar.gz
Normal file
BIN
requirements/anyjson-0.3.3.tar.gz
Normal file
Binary file not shown.
BIN
requirements/billiard-2.7.3.28.tar.gz
Normal file
BIN
requirements/billiard-2.7.3.28.tar.gz
Normal file
Binary file not shown.
BIN
requirements/celery-3.0.19.tar.gz
Normal file
BIN
requirements/celery-3.0.19.tar.gz
Normal file
Binary file not shown.
@ -1,19 +1,21 @@
|
||||
# PIP requirements for AnsibleWorks development/build environment.
|
||||
# Install using "pip -r requirements.txt"
|
||||
# Install using "pip -r dev.txt"
|
||||
|
||||
Django>=1.5
|
||||
django-celery
|
||||
django-devserver
|
||||
django-extensions
|
||||
django-filter
|
||||
django-jsonfield
|
||||
django-taggit
|
||||
djangorestframework
|
||||
ipython
|
||||
markdown
|
||||
Markdown
|
||||
pexpect
|
||||
python-dateutil
|
||||
South
|
||||
South>=0.8,<2.0
|
||||
|
||||
django-debug-toolbar
|
||||
django-devserver
|
||||
ipython
|
||||
|
||||
# You may also need to install the following extra packages using the OS
|
||||
# package manager, or pip if you're running inside a virtualenv.
|
||||
BIN
requirements/django-celery-3.0.17.tar.gz
Normal file
BIN
requirements/django-celery-3.0.17.tar.gz
Normal file
Binary file not shown.
BIN
requirements/django-debug-toolbar-0.9.4.tar.gz
Normal file
BIN
requirements/django-debug-toolbar-0.9.4.tar.gz
Normal file
Binary file not shown.
BIN
requirements/django-devserver-0.6.2.tar.gz
Normal file
BIN
requirements/django-devserver-0.6.2.tar.gz
Normal file
Binary file not shown.
BIN
requirements/django-extensions-1.1.1.tar.gz
Normal file
BIN
requirements/django-extensions-1.1.1.tar.gz
Normal file
Binary file not shown.
BIN
requirements/django-jsonfield-0.9.4.tar.gz
Normal file
BIN
requirements/django-jsonfield-0.9.4.tar.gz
Normal file
Binary file not shown.
BIN
requirements/django-taggit-0.10a1.tar.gz
Normal file
BIN
requirements/django-taggit-0.10a1.tar.gz
Normal file
Binary file not shown.
BIN
requirements/djangorestframework-2.3.5.tar.gz
Normal file
BIN
requirements/djangorestframework-2.3.5.tar.gz
Normal file
Binary file not shown.
BIN
requirements/ipython-0.13.2.zip
Normal file
BIN
requirements/ipython-0.13.2.zip
Normal file
Binary file not shown.
BIN
requirements/kombu-2.5.10.tar.gz
Normal file
BIN
requirements/kombu-2.5.10.tar.gz
Normal file
Binary file not shown.
BIN
requirements/pexpect-2.4.tar.gz
Normal file
BIN
requirements/pexpect-2.4.tar.gz
Normal file
Binary file not shown.
BIN
requirements/python-dateutil-2.1.tar.gz
Normal file
BIN
requirements/python-dateutil-2.1.tar.gz
Normal file
Binary file not shown.
BIN
requirements/pytz-2013b.tar.gz
Normal file
BIN
requirements/pytz-2013b.tar.gz
Normal file
Binary file not shown.
BIN
requirements/six-1.3.0.tar.gz
Normal file
BIN
requirements/six-1.3.0.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user