0

I'm deploying a django (python) application. I wondered what is the best way to deploy it. With microsoft azure or Amazon Elastic Beanstalk ?

The application just needs to view data from a database. What are (dis)advantages of azure or elastic beanstalk?

I'm using OSX 10.9.5 and Python 3.4.3

Tomasz Jakub Rup
10.7k7 gold badges52 silver badges49 bronze badges
asked Nov 16, 2015 at 7:32
2
  • 1
    You need to provide more details. As it stands now, this question is very difficult to answer and would most likely be closed as either "too broad" or "opinion based". Commented Nov 16, 2015 at 7:33
  • you can refer to azure.microsoft.com/en-us/documentation/articles/… for a quick start Commented Nov 16, 2015 at 9:47

3 Answers 3

0

As Gaurav Mantri said, you need to provide more details - atleast the OS you are using. Some more surfing could lead you here :

What's the recommended way to deploy a Django app on IIS?

answered Nov 16, 2015 at 7:41
Sign up to request clarification or add additional context in comments.

Comments

0

For web apps, Azure has Azure App Service. Deployment can be done through a variety of ways, including FTP, git, or from Visual Studio. Since you're using Mac, I would recommend deploying via git.

To do so, first create a web app in the Azure portal, and then follow the steps here: https://azure.microsoft.com/en-us/documentation/articles/web-sites-publish-source-control/

The advantages of Azure App Service, is that you can easily scale your app to many machines, and everything is taken care for you. Note that depending on how you've configured your database, you would have to deploy that separately.

Also, if you want to test Azure App Service, you can easily create a small sample Django application, using the Azure gallery. See the screen shot below. enter image description here

answered Nov 16, 2015 at 20:26

Comments

0

Azure Web Apps provide a volume of ways for deployment your web applications. We can leverage tools/IDEs including FTP tools , Visual Studio and WebMatrix on Windows for remoting and modifying your web site code, and leverage repository for continuous deployment including local GIT, GITHUB, Visual Studio Online, Dropbox, Bitbucket.

It depends which way you prefer to.

As @ theadriangreen mentioned, Azure Web Apps provide Django template for a quick start, you can simply create a Django application and pull the code to local leveraging the methods above.

Beside Continuous deployment using GIT in Azure App Service, you also can refer to Creating web apps with Django in Azure for more information.

answered Nov 17, 2015 at 1:47

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.