summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorDevin Carlen <devin.carlen@gmail.com>2011-03-02 17:20:17 -0800
committerDevin Carlen <devin.carlen@gmail.com>2011-03-02 17:20:17 -0800
commitd4a5bc97f394985e2a53dca924974514c6fda8c3 (patch)
treeda9b68ce252dbf39b9ca1386c232764c23ead453 /README
parente6c6059ec2b6b424df5b14f7959b7f53ed0b276e (diff)
downloadtuskar-ui-d4a5bc97f394985e2a53dca924974514c6fda8c3.tar.gz
Added django-nova to openstack-dashboard repo
Diffstat (limited to 'README')
-rw-r--r--README49
1 files changed, 0 insertions, 49 deletions
diff --git a/README b/README
index f4b1cfcb..e69de29b 100644
--- a/README
+++ b/README
@@ -1,49 +0,0 @@
-OpenStack Dashboard
--------------------
-
-The OpenStack Dashboard is a reference implementation of a Django site that
-uses the Django-Nova project to provide web based interactions with the
-OpenStack Nova cloud controller.
-
-For more information about the Django-Nova project, please visit:
-
- http://launchpad.net/django-nova
-
-
-Getting Started
----------------
-
-The first step is to obtain a local copy of the django-nova project:
-
- $ mkdir django-nova
- $ cd django-nova
- $ bzr init-repo .
- $ bzr branch lp:django-nova/trunk
-
-
-Next we will create the virtualenv for local development. A tool is included to
-create one for you:
-
- $ python tools/install_venv.py <path to django-nova/trunk>
-
-
-Now that the virtualenv is created, you need to configure your local
-environment. To do this, create a local_settings.py file in the local/
-directory. There is a local_settings.py.example file there that may be used
-as a template.
-
-Finally, issue the django syncdb command:
-
- $ tools/with_venv.sh dashboard/manage.py syncdb
-
-If after you have specified the admin user the script appears to hang, it
-probably means the installation of Nova being referred to in local_settings.py
-is unavailable.
-
-
-If all is well you should now able to run the server locally:
-
- $ tools/with_venv.sh dashboard/manage.py runserver
-
-
-