The README includes code snippets for cloning the repositories and running the necessary commands for Django and Flutter.
queue_management
is a Django-based backend for a queue management system.
-
Clone the Repository:
git clone https://github.com/pritam-ravani/queue.git
-
Navigate to the Project Directory:
cd queue/queue_management
-
Install Dependencies:
pip install -r requirements.txt
-
Apply Migrations:
python manage.py migrate
-
Run the Development Server:
python manage.py runserver
-
Access the API:
The API will be available at
http://127.0.0.1:8000/
.
-
Create a Superuser (Admin):
python manage.py createsuperuser
-
Run Tests:
python manage.py test
queue_ui
is a Flutter-based frontend for the queue management system.
-
Clone the Repository:
git clone https://github.com/your-username/queue_ui.git
-
Navigate to the Project Directory:
cd queue_ui
-
Install Dependencies:
flutter pub get
-
Run the App:
flutter run
-
Access the App:
The Flutter app will start on an emulator or connected device.
-
Build Release APK:
flutter build apk --release
-
Run Tests:
flutter test
- Make sure you have Python, Django, and Flutter installed on your machine.
- Adjust the clone URLs based on your repository locations.