diff --git a/openshift/__init__.py b/openshift/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/openshift/admin.py b/openshift/admin.py new file mode 100644 index 00000000..8c38f3f3 --- /dev/null +++ b/openshift/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/openshift/migrations/__init__.py b/openshift/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/openshift/models.py b/openshift/models.py new file mode 100644 index 00000000..71a83623 --- /dev/null +++ b/openshift/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/openshift/templates/openshift/index.html b/openshift/templates/openshift/index.html new file mode 100644 index 00000000..6ad12b9b --- /dev/null +++ b/openshift/templates/openshift/index.html @@ -0,0 +1,47 @@ + +
+ ++ This project has just a skeleton for you to get started. It includes: +
+python manage.py startproject project .python manage.py startapp openshift+ Now it is time to add your own code. Follow along the Django tutorial to learn more about Django. +
+
+ You can see more information about this request using the toolbar on the right.
+ Please note that by default your Django settings have DEBUG = True and that is not appropriate for production use,
+ but very handy during development.
+ Refer to the Deployment Checklist before taking this project into a production environment.