Simple ticket manager.
Project description
# My Little Ticket :ticket:
[![Build Status](https://travis-ci.org/iksaif/my-little-ticket.svg?branch=master)](https://travis-ci.org/iksaif/my-little-ticket)
[![Coverage Status](https://coveralls.io/repos/github/iksaif/my-little-ticket/badge.svg)](https://coveralls.io/github/iksaif/my-little-ticket?branch=master)
A dashboard for interrupt tickets that makes it simple to pick the most important ticket to work on.
[![My-Little-Ticket screenshot](doc/my-little-ticket.png)](doc/my-little-ticket.png)
*This is currently under active development and not ready for production.*
## Quickstart
```bash
virtualenv venv -p python3
source venv/bin/activate
cp examples/local_settings.py my_little_ticket/
pip install -e .
pip install -r requirements.txt
./manage.py migrate
./manage.py migrate --run-syncdb
./manage.py createsuperuser
./manage.py runserver
```
## Configuration
See [local_settings](examples/local_settings.py).
## Using Docker
```
docker build . -t my_little_ticket
docker run --rm -it -p 8000:8000 \
--name=my_little_ticket \
--volume=examples/local_settings.py:/opt/mlt/my_little_ticket/local_settings.py \
my_little_ticket
```
## Authentication
This project is using [django-allauth](https://django-allauth.readthedocs.io/en/latest/).
## API
Simply go to `/swagger/` or `/api/` to see what can be done. No much so far.
## Plugins
### Strategies
A strategy is a way to score and organize tickets on a board. Check
[base.py](my_little_ticket/plugins/base.py) and [default.py](my_little_ticket/plugins/default.py) for an example.
You'll need to implement only a few functions.
And add it to your settings.py:
```python
MLT_STRATEGIES = [
...
'my_module.MyStrategy',
]
```
### Plugins
A plugin is a way to fetch ticket from a source. Currently this project
can only fetch tickets from JIRA, but you can easilly create your own plugin,
take a look at [base.py](my_little_ticket/plugins/base.py) and
[jira](my_little_ticket/plugins/jira.py) to know more.
```python
MLT_PLUGINS = [
...
'my_module.MyPlugin'
]
```
[![Build Status](https://travis-ci.org/iksaif/my-little-ticket.svg?branch=master)](https://travis-ci.org/iksaif/my-little-ticket)
[![Coverage Status](https://coveralls.io/repos/github/iksaif/my-little-ticket/badge.svg)](https://coveralls.io/github/iksaif/my-little-ticket?branch=master)
A dashboard for interrupt tickets that makes it simple to pick the most important ticket to work on.
[![My-Little-Ticket screenshot](doc/my-little-ticket.png)](doc/my-little-ticket.png)
*This is currently under active development and not ready for production.*
## Quickstart
```bash
virtualenv venv -p python3
source venv/bin/activate
cp examples/local_settings.py my_little_ticket/
pip install -e .
pip install -r requirements.txt
./manage.py migrate
./manage.py migrate --run-syncdb
./manage.py createsuperuser
./manage.py runserver
```
## Configuration
See [local_settings](examples/local_settings.py).
## Using Docker
```
docker build . -t my_little_ticket
docker run --rm -it -p 8000:8000 \
--name=my_little_ticket \
--volume=examples/local_settings.py:/opt/mlt/my_little_ticket/local_settings.py \
my_little_ticket
```
## Authentication
This project is using [django-allauth](https://django-allauth.readthedocs.io/en/latest/).
## API
Simply go to `/swagger/` or `/api/` to see what can be done. No much so far.
## Plugins
### Strategies
A strategy is a way to score and organize tickets on a board. Check
[base.py](my_little_ticket/plugins/base.py) and [default.py](my_little_ticket/plugins/default.py) for an example.
You'll need to implement only a few functions.
And add it to your settings.py:
```python
MLT_STRATEGIES = [
...
'my_module.MyStrategy',
]
```
### Plugins
A plugin is a way to fetch ticket from a source. Currently this project
can only fetch tickets from JIRA, but you can easilly create your own plugin,
take a look at [base.py](my_little_ticket/plugins/base.py) and
[jira](my_little_ticket/plugins/jira.py) to know more.
```python
MLT_PLUGINS = [
...
'my_module.MyPlugin'
]
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
my-little-ticket-0.0.13.tar.gz
(19.6 kB
view details)
File details
Details for the file my-little-ticket-0.0.13.tar.gz
.
File metadata
- Download URL: my-little-ticket-0.0.13.tar.gz
- Upload date:
- Size: 19.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce0ceecf1e27697447354ccba10da342729fc2757de55881d4529f97844be7ad |
|
MD5 | 7cc3ca99d145f35ccc624958218be12b |
|
BLAKE2b-256 | 19834be39ce292b47ca2fab4165afdf5f5ceefd1a4a14c5b5c21e7841f5d4d65 |