This Django app allows you to manage Liven vouchers and their associated restaurant details.
- Python (>=3.10)
- pip
- virtualenv
-
Clone the repository:
git clone https://github.com/AnandMoorthy/liven-voucher-system.git cd liven-voucher-system
-
Create and activate a virtual environment (optional but recommended):
python -m venv venv source venv/bin/activate # On Windows: .\venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Apply database migrations:
python manage.py migrate
-
Create a superuser to access the Django admin panel:
python manage.py createsuperuser
-
Run the development server:
python manage.py runserver
-
Open your browser and navigate to http://localhost:8000/admin/ to log in with the superuser credentials.
You can manage vouchers and restaurants through the Django admin panel: