Management commands to deploy Django webapps
Project description
This Django app contains the commands used to manage the process from development to code in production at DjaoDjin.
Install
Install deployutils into your virtualenv
$ python setup.py install
Add _deployutils_ to the INSTALLED_APPS
Configure the DEPLOYUTILS variables in the project settings
DRY_RUN Do not execute, just show the commands
DEPLOYED_WEBAPP_ROOT Directory on DEPLOYED_SERVERS where to find webapps
DEPLOYED_SERVERS List of Hostname/IP webapps are deployed to
- RESOURCES_MACHINE URL to the resources not under source control
(ex: git@example.com)
Commands to upload/download resources
$ python manage.py download_resources $ python manage.py upload_resources
Not all assets are stored under source control. Images, videos, etc. are better kept outside the git repository. These two commands are used to download the extra resources into the webapp htdocs/ directory from the stage server and upload them from the webapp htdocs/ directory to the stage server respectively.
Commands to setup on deployed servers
$ python manage.py pullapp
Fetch/merge from the remote git repository and downlad the extra resources from the stage server.
Commnands to deploy webapp
$ python manage.py syncapp
This command will trigger a “python manage.py pullapp” on the deployed server.
Note that you will need to setup the deployed machine with appropriate authentication.
$ python manage.py pushapp
Sometimes you are trying to test a hotfix directly in production. To that purpose pushapp will rsync the webapp directly from your dev system to the production servers.
Using configuration files from a S3 bucket
$ python manage.py upload_configs credentials site.conf
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for djaodjin-deployutils-0.2.7.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 625817b353a9f2662009565c53c751c4b2b9292ee3b714daab8c101ad67800d8 |
|
MD5 | 663356760910633601f68ccd4d9e85bb |
|
BLAKE2b-256 | 866344b46fcd7d45b2ef7d422e81243878397a1812f310721a0fa8012310cd8a |