A simple web application for booking venues.
- Open in GitHub Viewer: Venue Booker Manual (PDF)
- Direct download: Download the PDF
-
Install Requirements
# Clone the repository git clone git@github.com:alisha-malik/VenueBooker.git cd into project folder # Create virtual environment Mac python3 -m venv venv or python -m venv venv source venv/bin/activate # Create virtual environment Windows python3 -m venv venv or python -m venv venv venv\Scripts\activate # Install dependencies pip install -r requirements.txt
-
Run the Server
python manage.py runserver
-
Open in Browser
http://127.0.0.1:8000/
- Client/Vendor Login:
http://127.0.0.1:8000/users/login/ - Client Dashboard:
http://127.0.0.1:8000/users/client/dashboard/ - Vendor Dashboard:
http://127.0.0.1:8000/users/vendor/dashboard/
- Admin Login:
http://127.0.0.1:8000/users/admin_login/ - Admin Dashboard:
http://127.0.0.1:8000/users/admin/dashboard/
Email: admin@gmail.com
Password: Password123
- Clients: Browse and book venues
- Vendors: List and manage venues
- Admins: Manage users and venues
- Python 3.x
- Git
- Virtualenv