A Calendar Slot Booking service, similar to that of Calendly, which allows people to define their available slots on a day and other people to book them. The server of this application is built on the Python framework Django.
Run the following commands to setup the application on your machine:
./server-setup.sh
source pyenv/bin/activate
python manage.py migrate
- Activate the virtual environment by running the command:
source pyenv/bin/activate
- Start the Django Server by running the command:
The application starts listening on http://127.0.0.1:8000/.
python manage.py runserver
Akash Agrawal