- Python 3.8 or higher
- pip for installing dependencies
To set up the necessary environment, copy the example environment file to .env
:
cp .env.example .env
Install the required dependencies using pip:
pip install -r requirements.txt
To run the server, execute the following command:
python3 server.py
- Login: Allows a user to log in to the system.
- Register: Allows a new user to register.
- Logout: Logs out the current user.
- Get Tasks: Retrieve a list of all tasks.
- Add Task: Add a new task to the list.
- Delete Task: Delete an existing task from the list.