Project Colaborar is the project mamagement web application for your organization. This web application will help the project managers to manage the engineers for the project. The project manager can create as many projects as he wants and invite as many engineers, same engineer can also work in different projects. The engineer or project manager can make queues(task to be done) which can be picked by any other engineer or by themselves. Stay Tuned for more info.....
- Setup the virtual environment for the project (Make sure that the python path is set for Python3).
- Install the requirements pip install -r requirements.txt
- Setup the database (PostgreSQL) with database name="django_todo", user="django_todo_user" and password="demo1234"
- Generate the migrations python manage.py makemigrations todo
- Run the migrations python manage.py migrate
- Create SuperUser python manage.py createsuperuser
- Run the server python manage.py runserver