Skip to content
This repository has been archived by the owner on May 22, 2018. It is now read-only.

Commit

Permalink
added readme and south
Browse files Browse the repository at this point in the history
  • Loading branch information
masarliev committed Oct 24, 2011
1 parent 2536ba9 commit 7c39b69
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
34 changes: 34 additions & 0 deletions README
@@ -0,0 +1,34 @@
GitLog is gitoris administration tool and repository browser build on django.

Python version must be greater than or equal to **2.6**


Requirements
---
- Django >= 1.3
- Pygments >= 1.4
- GitPython >= 0.3.2
- ConfigObj >= 4.7.2
- Makrdown >= 2.0.3
- South >= 0.7.2

Instalation
---

1. Register these following applications in the INSTALLED_APPS section of your project’s settings
> 'gitlog', 'django.contrib.markup',
2. Add these following template context processors if not already present.
> 'django.core.context_processors.static'
4. Run following commands

> python manage.py syncdb --all
> python manage.py migrate --fake
> python manage.py collectstatic

> sudo python manage runserver


Configuration
---
See **gitlog/settings.py** for available settings.

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -18,6 +18,6 @@
packages=['gitlog', 'gitlog.templatetags'],
package_data={ 'gitlog' : ['templates/gitlog/*.html', 'templates/gitlog/repositories/*.html', 'templates/gitlog/account/*.html']},
zip_safe=False,
install_requires=['GitPython >=0.3.2', 'Pygments >=1.4', 'Django >=1.3', 'ConfigObj >=4.7.2', 'Makrdown >=2.0.3'],
install_requires=['GitPython >=0.3.2', 'Pygments >=1.4', 'Django >=1.3', 'ConfigObj >=4.7.2', 'Makrdown >=2.0.3', 'south>=0.7.2'],
)

0 comments on commit 7c39b69

Please sign in to comment.