Work Distribution System is a web app which will help in workflow management in a business organisation. It allows user to create project and assign employees to it. It is built with Python using the Django Web Framework.
This project has the following basic apps:
- Index (Manages user accounts including SignUp, SignIn, Profiles, etc.)
- Project (Manages the cretaed projects)
To set up a development environment quickly, first install Python 3. It comes with virtualenv built-in. So create a virtual env by:
1. `$ python3 -m venv wds`
2. `$ . wds/bin/activate`
Install django:
pip install django
Run migrations:
python manage.py migrate
Take a look at the docs for more information.
- Namrata Ladda (@Namrata7199)
- Polkampally Keerthana (@keerthanapolkampally)