How can I try e1337cms functionality?ΒΆ

  1. Obtain a copy of e1337cms repo:

    $ hg clone ssh://hg@bitbucket.org/DNX/django-e1337cms
  2. Navitate in testsite folder inside this repo:

    $ cd django-e1337cms/testsite/
  3. Create a virtualenv:

    $ virtualenv /tmp/e1337cmsenv/
  4. Activate the virtualenv:

    $ source /tmp/e1337cmsenv/bin/activate
  5. Install all requirements:

    $ pip install -r requirements.txt
  6. Do a syncdb:

    $ python manage.py syncdb
  7. Migrate the db:

    $ python manage.py migrate
  8. Start the server:

    $ python manage.py runserver
  9. Open a browser and navigate to http://localhost:8000.

  10. Navigate to http://localhost:8000/admin/e1337cms/page/add/ to add some pages.

Project Versions

Previous topic

Getting Started

Next topic

Some examples of page content

This Page