Skip to content

Commit

Permalink
Merge branch 'master' of github.com:evildmp/Arkestra
Browse files Browse the repository at this point in the history
  • Loading branch information
evildmp committed Jun 24, 2011
2 parents e33a978 + e2fb235 commit e650f12
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion docs/getting_started.rst
Expand Up @@ -2,6 +2,22 @@
Getting Started
###############

************************
Setting up your settings
************************

The easiest way to start is by taking a look at the `example` project in Arkestra.

It contains a ready-made `settings.py` file, not to mention the `urls.py` and so on that you'll need.

Either copy these, or if you know what you're doing, copy the relevant parts to the files in your own project.

*****************
Once it's running
*****************

Start with the Python runserver, and get that going.

In order to make anything work, you'll need to do log in to Admin and do three things.

* create a Page
Expand All @@ -12,4 +28,14 @@ And since Arkestra needs to know what the *base entity* of your site is, in your

ARKESTRA_BASE_ENTITY = 1

where the value corresponds to the id of your base entity.
where the value corresponds to the id of your base entity.

*************
In production
*************

Run `collectstatic` - https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/- and the equivalent `symlinkmedia` -https://github.com/divio/django-appmedia - for media files to get them into the right place.

For deployment, point your web hosting platform not at `settings.py`, but `deployment_settings.py`.

It turns off various debug modes.

0 comments on commit e650f12

Please sign in to comment.