Backend for Evojam time tracking tool.
- python3
- flask
You need to have python3 and pip3 available in your path
Edit list jiras defined in server.py. It should contain names of jiras to be used. Name for jira is prefix of a link in form prefix.atlassian.net.
E.g. to use evojam and swingdev Jira:
jiras = [
'swingdev',
'evojam'
]For each Jira, setup environmental variables with credentials (by hand or by editing run script).
For Jira named myjira you should set JIRA_USER_MYJIRA with user name and JIRA_TOKEN_MYJIRA with user token.
sh install
sh runBackend will run on localhost:5000.