Prune devel/rubygem-debugger-xml
[dports.git] / www / py-django-cms / pkg-message
1 **********************************************************************
2
3 To try out django CMS, open a shell and run the following commands:
4
5     django-admin.py startproject mycmsproject
6     cd mycmsproject/mycmsproject
7     rm settings.py
8     rm urls.py
9     fetch https://gist.github.com/williambr/5748696/raw/settings.py
10     fetch https://gist.github.com/raw/1125918/urls.py
11     mkdir templates
12     cd templates
13     fetch https://gist.github.com/raw/1125918/example.html
14     cd ../..
15     python manage.py syncdb --all
16     python manage.py migrate --fake
17     python manage.py runserver
18
19 The last command should start a local server on port 8000 serving
20 your CMS installation, so open your browser and go to 127.0.0.1:8000
21 and you should see the CMS welcome page.
22
23 **********************************************************************