Deploying a Django app on AWS: Difference between revisions

From Littledamien Wiki
Jump to navigation Jump to search
Line 23: Line 23:


* [http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python-django.html Deploying a Django Application] - AWS Elastic Beanstalk documentation
* [http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python-django.html Deploying a Django Application] - AWS Elastic Beanstalk documentation
* [https://realpython.com/blog/python/deploying-a-django-app-to-aws-elastic-beanstalk/ Deploying a Django app to AWS Elastic Beanstalk] - Real Python


=== References ===
=== References ===
<references />
<references />

Revision as of 17:18, 7 February 2016

Prerequisites

See Django App Prerequisites for AWS Elastic Beanstalk

Deploying a Django app

Installing and updating project files

ssh to the AWS server.

Invoke the virtual Python 3.x environment.

Use Git to pull from the project repository.

Installing Django app dependencies

See Defining Django App Dependencies

Notes

See also

References