Collection of tools to run django on webfaction more seamless
Project description
Django-Webfaction
Collection of tools to run django on webfaction more seamless
Installation:
Install with pip or easy install (pip install django-webfaction)
Usage:
Console utility
Django webfaction contains webfactionctl utility that can be used to control your webfaction services from command-line.
You get access to basic commands like a list machines/apps/databases/ips/.. and crate apps and databases. For example to get list of your current dbs just run:
webfactionctl list_dbs
You can get extended info of your machines with current RAM usage, apps and processes with state command:
$ webfactionctl state Query machines list... Query apps list... Query machine state detail: Web210 Web217 Web223 Web317 Web327 +-----------+------------------+--------+--------------------+-----------+---------------+-----+ | ram_usage | operating_system | name | location | app_count | process_count | id | +===========+==================+========+====================+===========+===============+=====+ | 209708 | Centos5-32bit | Web210 | Europe (Amsterdam) | 19 | 20 | 376 | +-----------+------------------+--------+--------------------+-----------+---------------+-----+ | 43112 | Centos5-32bit | Web217 | Europe (Amsterdam) | 2 | 7 | 386 | +-----------+------------------+--------+--------------------+-----------+---------------+-----+ | 175352 | Centos5-32bit | Web223 | Europe (Amsterdam) | 12 | 17 | 395 | +-----------+------------------+--------+--------------------+-----------+---------------+-----+ | 8220 | Centos6-64bit | Web317 | Europe (Amsterdam) | 6 | 7 | 445 | +-----------+------------------+--------+--------------------+-----------+---------------+-----+ | 66092 | Centos6-64bit | Web327 | Europe (Amsterdam) | 2 | 9 | 462 | +-----------+------------------+--------+--------------------+-----------+---------------+-----+
Django deployment wizard
With webfactionctl stup_django_project you can run django deployment wizard that:
Prepare server by installing pip, virtualenv, gunicorn, django-webfaction globally for your account.
Create main app for your project
Setup virtualenv for your main project
Prepare gunicorn contorl script for your project
Create static app for your project
Prepare settings_local for your project
Sending mail from local sendmail asynchronous
There is a fail in webfaction deployment, when there is no sendmail server running on localhost, only smtp server in US. For apps runned in Europe sending a mail from stmp.webfaction.com or running local sendmail process takes >1.2 seconds that definately require asynchronous system.
To use asychronous message sending system just add this line to your django settings file:
EMAIL_BACKEND = 'webfaction.backends.EmailBackend'
Accessing REMOTE_ADDR from django
When a Django application’s Apache instance proxies requests to Django, the REMOTE_ADDR header is not set with the clients’s IP address. Adding this webfaction.middleware.WebFactionFixes to your MIDDLEWARE_CLASSES replace REMOTE_ADDR with correct client’s IP.
If you use classic method to modify deployed settings by putting:
try: from settings_local import * except ImportError: pass
at the end of settings.py file, you can put this code to settings_local:
MIDDLEWARE_CLASSES = ( 'webfaction.middleware.WebFactionFixes', ) + MIDDLEWARE_CLASSES
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-webfaction-2.0.1.tar.gz
.
File metadata
- Download URL: django-webfaction-2.0.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b86f68cc46295862d187b0078766ae280577bd0d8c7447267272c6c2946cc7c |
|
MD5 | dd2d91b0ff3607de0bb52943e87edf6e |
|
BLAKE2b-256 | 7216fa951e2c081cbf9d176369b578beaa69f8fd86fc03187c27522f44217073 |