In the web console, the overview tab shows you a service, by default called "web", that encapsulates all pods running your Django application. You can access your application by browsing to the service's IP address and port.
## Special files in this repository
Apart from the regular files created by Django (`project/*`, `welcome/*`, `manage.py`), this repository contains:
@ -60,17 +78,6 @@ gunicorn_conf.py - configuration for the gunicorn HTTP server
requirements.txt - list of dependencies
```
## Deploying to OpenShift
The file `application-template.json` contains an OpenShift application template that you can add you your OpenShift project with:
* `osc create -f application-template.json`
Now you can browse to your OpenShift web console and create a new app from the 'django-quickstart' template.
After adjusting your preferences (or accepting the defaults), your application will be built and deployed.
You will probably want to set the `GIT_REPOSITORY` parameter to point to your fork.