Skip to content

jmg/django_deployment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Deployment

Dead simple deployment for your django apps.

Config

config = {
    "hosts": ["@example.org"],
    "user": "root",
    "password": "root_password",

    "gunicorn_workers": 4,
    "gunicorn_port": 9001,

    "postgres_user": "testuser",
    "postgres_password": "testpassword",
    
    "server_port": 80,
    "server_name": "example.org www.example.org",
}

Deploy

Django deployment has never been so easy!

python deploy.py --dir=testproject

Provision and deploy

Provision your server and resolve the dependencies automatically. Then deploy!

python deploy.py --dir=testproject --full=True

About

Easy deploy for your django apps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages