This repository has been archived by the owner on Jan 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
48 lines (32 loc) · 1.48 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Berserk is a Scrum tracking tool developed to track sprint backlog, integrating
with Bugzilla or FogBugz to track these tasks.
The workflow of Berserk is heavily influenced by Overlord and Flux developed by
Medsphere.
To install:
* Make sure your berserk checkout directory is actually named berserk2.
* pip install
- django
- mysql-python
- simplejson
- beautifulsoup
- dateutil
- sentry (optional)
- twill (for Bugzilla Novell backend only)
* Copy local_settings.py.in to local_settings.py. Configure your settings in
local_settings.py. Make sure to list your database settings, which bug
tracker you want to use, and if you plan to use timeline, your email
settings.
* python manage.py syncdb
* python manage.py migrate
* Set up berserk in your webserver or for development:
python manage.py runserver
To configure:
* Navigate to berserk's admin page in your browser. If you are running in
development mode, this is at http://127.0.0.1:8000/admin.
* Configure the default site to point to where Berserk is located on the
internet. In development mode, using http://127.0.0.1:8000 is a-ok.
* Configure your first bug tracker, providing the product (or in FogBugz
terms, a project), the base url and login credentials.
* If you plan to run in production, install the crontab configuration located
in conf/crontab. If you're running in development mode, you'll need to run
the management commands manually when you want fresh data.