Django project creating for managing Tasks
-
User Profile
- View and update user profile details.
- Display user's full name, email, and other relevant information.
- Edit personal details such as first name, last name, email, etc.
-
Task Management
- Create, update, and delete tasks.
- Mark tasks as complete or incomplete.
-
User Authentication
- Secure user authentication system.
- Register new users and handle login/logout functionality.
-
Search Functionality
- Search for tasks based on keywords or other criteria.
TaskManager project deployed to Render
git clone https://github.com/Sparix/TaskManager.git
cd TaskManager
python3 -m venv venv #create virtual environment
source venv/Scripts/activate
pip install -r requirements.txt
python manage.py runserver #start Django Server