Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/django-wiki/django-wiki-project-template
A project template to get started with django-wiki
https://github.com/django-wiki/django-wiki-project-template
Last synced: 4 days ago
JSON representation
A project template to get started with django-wiki
- Host: GitHub
- URL: https://github.com/django-wiki/django-wiki-project-template
- Owner: django-wiki
- Archived: true
- Created: 2014-03-18T21:30:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-30T12:52:07.000Z (almost 10 years ago)
- Last Synced: 2024-08-02T12:48:47.482Z (3 months ago)
- Language: Python
- Size: 150 KB
- Stars: 12
- Watchers: 6
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - django-wiki/django-wiki-project-template - A project template to get started with django-wiki (others)
README
# Project template for django-wiki
This project template aims to be an easy way to get a wiki up and running using
the awesome django-wiki (http://django-wiki.org)# Usage
Start a project like this:
django-admin.py startproject --template=https://github.com/django-wiki/django-wiki-project-template/archive/master.zip
Now make sure you have everything installed in your virtualenv (you are using
virtualenv right!?):pip install -r requirements/base.txt
Then go sync and migrate the database:
./manage.py syncdb; ./manage.py migrate
Now you are ready to go!
# Setting structure
This project template tries to encourage "The One True Way" of doing settings
in Django (http://2scoops.co/the-best-and-worst-of-django slide 51). So the
basic settings are in /settings/base.py.
The manage.py script has also been edited to reflect this.But hey, if you don't like it, then just change it ;)