Getting Started with Django on IBM Cloud
5 min read
Getting Started with Django on IBM Cloud
We just released a new starter kit on IBM Cloud App Service that makes it easy to get started on a production-ready Django app. IBM Cloud App Service helps developers build cloud native applications by generating pre-configured, production-ready starters. This post will teach you how to create the new Django starter. Django is a python web framework that follows the Model View Controller architectural pattern that emphasizes reusability and rapid development for complex, data driven websites. In this tutorial, we will go over how to create, build, run, and deploy a Django Web Basic starter.
Prerequisites
I will also assume that you are logged into the Bluemix CLI and the Bluemix Container Registry CLI. You should also have a Kubernetes cluster created in Bluemix, and configured with the Kubernetes CLI.
Creating the Application
-
Navigate to the AppService Console and click to create your Project from pre-defined Starter Kits.
-
Click on Starter Kits and scroll down to select the Python Django Basic starter
-
Enter a project name which will also be the Django project and app name.
-
Click on Create Project to scaffold a Django application.
-
[Optional] To add cognitive and data services, click on Add service.
-
Click on Download Code
Deploy to IBM Cloud
After your project code is downloaded, navigate to the project’s directory folder:
-
To build your project, run bx dev build
-
To run your project locally, run bx dev run
-
To deploy your project to Cloud Foundry, run bx dev deploy
-
To deploy your project to Kubernetes, run bx dev deploy –target container and follow the command prompts
You should see a splash page like this one if successful: