├── .gitignore ├── ATP_Performance_Test ├── .gondor │ └── config ├── ATP_Performance_Test_wsgi.py ├── __init__.py ├── askthepony │ ├── __init__.py │ ├── db.py │ └── middleware.py ├── ext │ ├── __init__.py │ └── django_registration │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── AUTHORS │ │ ├── CHANGELOG │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README │ │ ├── __init__.py │ │ ├── registration │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth_urls.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ ├── default │ │ │ │ ├── __init__.py │ │ │ │ └── urls.py │ │ │ └── simple │ │ │ │ ├── __init__.py │ │ │ │ └── urls.py │ │ ├── forms.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── cleanupregistration.py │ │ ├── models.py │ │ ├── signals.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── backends.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── urls.py │ │ └── views.py │ │ └── setup.py ├── manage.py ├── misc │ ├── __init__.py │ ├── middleware.py │ └── views.py ├── profiles │ ├── __init__.py │ ├── models.py │ ├── urls.py │ └── views.py ├── requirements.txt ├── run_heroku_run.sh ├── scripts │ └── create_users.py ├── settings.py ├── templates │ ├── 404.html │ ├── 500.html │ ├── base.html │ ├── base_jinja2.html │ ├── index.html │ ├── index_jinja2.html │ ├── profiles │ │ └── show.html │ ├── registration │ │ ├── activate.html │ │ ├── activation_email.txt │ │ ├── activation_email_subject.txt │ │ ├── login.html │ │ ├── logout.html │ │ ├── password_change_done.html │ │ ├── password_change_form.html │ │ ├── registration_complete.html │ │ └── registration_form.html │ └── tuitter │ │ ├── add.html │ │ └── show.html ├── tuitter │ ├── __init__.py │ ├── fixtures │ │ └── initial_data.json │ ├── forms.py │ ├── models.py │ ├── urls.py │ └── views.py └── urls.py ├── Ask The Pony - Django hosting performance roundup - June '11 - DOTCLOUD.jmx ├── Ask The Pony - Django hosting performance roundup - June '11 - GONDOR.jmx ├── Ask The Pony - Django hosting performance roundup - June '11 - LOCAL NGINX.jmx ├── Procfile ├── bundle_environment.sh ├── dotcloud.yml ├── epio.ini ├── etc ├── mime.types ├── nginx.conf ├── nginx_gunicorn.conf └── uwsgi_params ├── install_pgbouncer.sh ├── requirements.txt ├── run_create_database.sh ├── run_dotcloud_create_database.sh ├── run_first.sh ├── run_gunicorn.sh ├── run_nginx.sh ├── run_nginx_gunicorn.sh ├── run_uwsgi.sh ├── test.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/.gitignore -------------------------------------------------------------------------------- /ATP_Performance_Test/.gondor/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/.gondor/config -------------------------------------------------------------------------------- /ATP_Performance_Test/ATP_Performance_Test_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ATP_Performance_Test_wsgi.py -------------------------------------------------------------------------------- /ATP_Performance_Test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ATP_Performance_Test/askthepony/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/askthepony/__init__.py -------------------------------------------------------------------------------- /ATP_Performance_Test/askthepony/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/askthepony/db.py -------------------------------------------------------------------------------- /ATP_Performance_Test/askthepony/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/askthepony/middleware.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | *.pyc 3 | dist 4 | MANIFEST 5 | _build 6 | _static -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/.hgtags -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/AUTHORS -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/CHANGELOG -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/INSTALL -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/LICENSE -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/MANIFEST.in -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/README -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/__init__.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/admin.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/auth_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/auth_urls.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/backends/__init__.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/backends/default/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/backends/default/__init__.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/backends/default/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/backends/default/urls.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/backends/simple/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/backends/simple/__init__.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/backends/simple/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/backends/simple/urls.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/forms.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/management/commands/cleanupregistration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/management/commands/cleanupregistration.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/models.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/signals.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/tests/__init__.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/tests/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/tests/backends.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/tests/forms.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/tests/models.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/tests/urls.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/tests/views.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/urls.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/registration/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/registration/views.py -------------------------------------------------------------------------------- /ATP_Performance_Test/ext/django_registration/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/ext/django_registration/setup.py -------------------------------------------------------------------------------- /ATP_Performance_Test/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/manage.py -------------------------------------------------------------------------------- /ATP_Performance_Test/misc/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tk' 2 | -------------------------------------------------------------------------------- /ATP_Performance_Test/misc/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/misc/middleware.py -------------------------------------------------------------------------------- /ATP_Performance_Test/misc/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/misc/views.py -------------------------------------------------------------------------------- /ATP_Performance_Test/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tk' 2 | -------------------------------------------------------------------------------- /ATP_Performance_Test/profiles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/profiles/models.py -------------------------------------------------------------------------------- /ATP_Performance_Test/profiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/profiles/urls.py -------------------------------------------------------------------------------- /ATP_Performance_Test/profiles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/profiles/views.py -------------------------------------------------------------------------------- /ATP_Performance_Test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/requirements.txt -------------------------------------------------------------------------------- /ATP_Performance_Test/run_heroku_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/run_heroku_run.sh -------------------------------------------------------------------------------- /ATP_Performance_Test/scripts/create_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/scripts/create_users.py -------------------------------------------------------------------------------- /ATP_Performance_Test/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/settings.py -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/404.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/500.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/base.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/base_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/base_jinja2.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/index.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/index_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/index_jinja2.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/profiles/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/profiles/show.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/registration/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/registration/activate.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/registration/activation_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/registration/activation_email.txt -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/registration/activation_email_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}Account activation on {{ site.name }} 2 | -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/registration/login.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/registration/logout.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/registration/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/registration/registration_complete.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/registration/registration_form.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/tuitter/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/tuitter/add.html -------------------------------------------------------------------------------- /ATP_Performance_Test/templates/tuitter/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/templates/tuitter/show.html -------------------------------------------------------------------------------- /ATP_Performance_Test/tuitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ATP_Performance_Test/tuitter/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/tuitter/fixtures/initial_data.json -------------------------------------------------------------------------------- /ATP_Performance_Test/tuitter/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/tuitter/forms.py -------------------------------------------------------------------------------- /ATP_Performance_Test/tuitter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/tuitter/models.py -------------------------------------------------------------------------------- /ATP_Performance_Test/tuitter/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/tuitter/urls.py -------------------------------------------------------------------------------- /ATP_Performance_Test/tuitter/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/tuitter/views.py -------------------------------------------------------------------------------- /ATP_Performance_Test/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/ATP_Performance_Test/urls.py -------------------------------------------------------------------------------- /Ask The Pony - Django hosting performance roundup - June '11 - DOTCLOUD.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/Ask The Pony - Django hosting performance roundup - June '11 - DOTCLOUD.jmx -------------------------------------------------------------------------------- /Ask The Pony - Django hosting performance roundup - June '11 - GONDOR.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/Ask The Pony - Django hosting performance roundup - June '11 - GONDOR.jmx -------------------------------------------------------------------------------- /Ask The Pony - Django hosting performance roundup - June '11 - LOCAL NGINX.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/Ask The Pony - Django hosting performance roundup - June '11 - LOCAL NGINX.jmx -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/Procfile -------------------------------------------------------------------------------- /bundle_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/bundle_environment.sh -------------------------------------------------------------------------------- /dotcloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/dotcloud.yml -------------------------------------------------------------------------------- /epio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/epio.ini -------------------------------------------------------------------------------- /etc/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/etc/mime.types -------------------------------------------------------------------------------- /etc/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/etc/nginx.conf -------------------------------------------------------------------------------- /etc/nginx_gunicorn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/etc/nginx_gunicorn.conf -------------------------------------------------------------------------------- /etc/uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/etc/uwsgi_params -------------------------------------------------------------------------------- /install_pgbouncer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/install_pgbouncer.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_create_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/run_create_database.sh -------------------------------------------------------------------------------- /run_dotcloud_create_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/run_dotcloud_create_database.sh -------------------------------------------------------------------------------- /run_first.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/run_first.sh -------------------------------------------------------------------------------- /run_gunicorn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/run_gunicorn.sh -------------------------------------------------------------------------------- /run_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/run_nginx.sh -------------------------------------------------------------------------------- /run_nginx_gunicorn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/run_nginx_gunicorn.sh -------------------------------------------------------------------------------- /run_uwsgi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/run_uwsgi.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/test.py -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkopczuk/ATP_Performance_Test/HEAD/wsgi.py --------------------------------------------------------------------------------