A web app to manage tasks for technical teams, You can open a workspace for your organizations and users can sign up to that workspace, create tasks, assign it milestones, change tasks milestones. This web app also provides RESTFUL API which would be consumed by my front-end project which would be implemented by vuejs later on.
Technology Used: Django 2.1.5 (Python 3)
Database: SQLite 3 (SQLite is used because it can be safely assumed that it would not be a very busy site and enterprise level database can be avoided)
-
Clone repository
git clone [email protected]:e4e-pycore/disc_personality_test.git
-
You'll need to have virtual enviroment installed on your machine
pip3 install virtualenv
-
Setup virtual environment
virtualenv -p python3 .virtualenv
-
Activate virtual environment
source .virtualenv/bin/activate
-
Install requirements
pip install -r requirements.txt
-
python manage.py migrate