Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akabiru/issue-tracker
Issue Tracker web app
https://github.com/akabiru/issue-tracker
flask issue-tracker
Last synced: 3 months ago
JSON representation
Issue Tracker web app
- Host: GitHub
- URL: https://github.com/akabiru/issue-tracker
- Owner: akabiru
- Created: 2016-02-02T05:20:14.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-05T07:33:38.000Z (almost 9 years ago)
- Last Synced: 2024-10-10T02:08:08.901Z (3 months ago)
- Topics: flask, issue-tracker
- Language: Python
- Homepage: https://issues-track.herokuapp.com
- Size: 45.9 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Issues version 1.0.0 05/02/2016
Help users in an organisation track their issues. An intuitive way to track all issues posted
by a user and the status of the issue.### Install
`git clone https:github.com/makabby/issue-tracker.git`
`cd Issue-Tracker`
`virtualenv venv`
`source venv/bin/activate`
`$ pip install -r requirements.text`### Usage
Interact with the python shell context already defined.
Made possible by `make_shell_context()` function.
```python
def make_shell_context():
'''Returns application and database instances
to the shell importing them automatically
on `python manager.py shell`.
'''
return dict(app=app, db=db, User=User, Role=Role,
Department=Department, Issue=Issue)
```
Initialise the shell with `Flask-Script` extension Manager class.
```python
manager.add_command("shell", Shell(make_context=make_shell_context))
manager.add_command('db', MigrateCommand)
```#### Run
Start the application with `python manage.py runserver` also made possible by
the `Flask-Script` extension.visit http:localhost:5000