freebsd-ports/www/py-django-cms/pkg-message
William Grzybowski 8510901310 - Update to 2.4.1 [1]
- Update pkg-message

Changes: http://docs.django-cms.org/en/2.4.0/upgrade/2.4.html

PR:		ports/178988 [1]
Submitted by:	Melvyn Sopacua <melvyn@magemana.nl>
Approved by:	culot / jpaetzel (mentors, implicit), maintainer (timeout)
2013-06-10 14:25:07 +00:00

23 lines
835 B
Text

**********************************************************************
To try out django CMS, open a shell and run the following commands:
django-admin.py startproject mycmsproject
cd mycmsproject/mycmsproject
rm settings.py
rm urls.py
fetch https://gist.github.com/williambr/5748696/raw/settings.py
fetch https://gist.github.com/raw/1125918/urls.py
mkdir templates
cd templates
fetch https://gist.github.com/raw/1125918/example.html
cd ../..
python manage.py syncdb --all
python manage.py migrate --fake
python manage.py runserver
The last command should start a local server on port 8000 serving
your CMS installation, so open your browser and go to 127.0.0.1:8000
and you should see the CMS welcome page.
**********************************************************************