Modified:
/wiki/GettingStarted.wiki
=======================================
--- /wiki/GettingStarted.wiki Thu Feb 10 13:54:02 2011
+++ /wiki/GettingStarted.wiki Thu Feb 10 14:34:53 2011
@@ -94,20 +94,13 @@
http://<instance_name_from_above>.appspot.com/helloworld.html
}}}
-NOW, In order to use the django admin:
- # Patch djangoappengine so that it doesn't break when you want to use the
admin. This you might have to do manually, because conceivably the file
that needs to be fixed (`<project_root>/djangoappengine/db/compiler.py`)
might have been updated. The fix is required because djangoappengine fails
(or failed) explicitly by throwing an exception when it encounters joins
in "order by" statements. A diff describing the changes that may be
required (if it has not been fixed in djangoappengine trunk yet) is here:
-{{{
-cat <project_root>/pirate-politics-read-only/pirate-politics/compiler.diff
-}}}
- # Deploy again:
-{{{
-python manage.py deploy
-}}}
+To get started on your local copy for contribution to the project:
# Create an admin user that you can use to login to the django admin, by
visiting the following url:
{{{
-http://<instance_name_from_above>.appspot.com/setup_admin/
+http://localhost:8000/setup_admin/
}}}
Then log into the admin here:
{{{
-http://<instance_name_from_above>.appspot.com/admin/
+http://localhost:8000/admin/
}}}
+ Then create an example topic either in the admin panel or by clicking the
profile navigation tab at `http://localhost:8000/helloworld.html`. Scroll
to the Staff Control Panel, add the Text, Description, and set the Parent
to `__NULL__`. Now you can begin to create Issues, Solutions, Arguments and
add Comments to these objects.