A room booking system built using Django framework. It is designed for employees to book a conference room at their selected date time. Features include room booking and manage upcoming reservations.
Python, Django and other required modules need to be installed
pip install -r requirements.txt
Before running the project, there are few things need to be done first.
Firstly, you'll need a secret key for the django project. See how to get one here.
Secondly, you'll need to sign up on Cloudinary to obtain your cloud where you'll be storing medias.
Lastly, create a .env file in the root folder of the project with:
SECRET_KEY = 'your_secret_key'
CLOUD_NAME = 'your_cloud_name'
API_KEY = 'your_api_key'
API_SECRET = 'your_api_secret'
Open cmd and cd to where the project folder and run:
python manage.py runserver
Date and time field currently works on:
✔️ Chrome
✔️ Edge
❌ Firefox
Open a browser and go to http://127.0.0.1:8000/home, where you'll be redirected to login page and asked to log in or register.
You can also create an admin account by typing the following command in cmd:
python manage.py createsuperuser