This is a template project for GoScale CMS (GitHub repository).
If you start your Django project from this template you'll have a boostraped ready to go CMS installation that you can immediately run and build your project based on!
- GoScale CMS
- Product of Sterno.Ru.
- Developed and maintained under supervision of Evgeny Demchenko
Change project_name to your actual project name.
django-admin.py startproject --template=https://github.com/sternoru/goscalecms-bootstrap/archive/master.zip --extension=py,md,rst project_name cd project_name
I suggest to use virtualenv or, even better, virtualenvwrapper for managing requirements:
# Create an environment if you have virtualenvwrapper installed mkvirtualenv project_env
pip install -r requirements.txt fab bootstrap
You're good to go! Run it like any other Django project or use fabric shortcut:
fab run
This template comes with a pre-created superuser: admin/123, so you can quickly login to the django admin interface. It also has fixtures with some pages and plugins + twitter bootstrap theme to quick start the front-end.
To run your project later you just need to activate the virtualenv from the project directory:
# if you're using virtualenvwrapper cd project_name workon project_env fab run