This is a simple development tracker based on Patrickloeber todo python app.
- Discord oauth with ID whitelist, allowing you to assign admins to the tracking workflow.
- Add, delete and edit tasks on the list to keep track of progress.
- All data stored locally.
Quick setup guide for the app.
- Create the python virtual environment.
python3 -m venv venv
source venv/bin/activate- Install the dependencies.
pip install -r requirements.txt- Create your
.envfile.
client_id='client id'
client_secret='client secret'
redirect_url='call back url'
discord_id='your discord id'
secret_flask_key='your secret key'- Run the environment.
python main.pySetup guide of building and running the DevTasker app.
- Build the docker image.
docker build -t dev-tasker .- Run the docker container.
docker run -d -p 9050:9050 --name dev-tasker dev-tasker