Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 1.57 KB

README.md

File metadata and controls

62 lines (40 loc) · 1.57 KB

Header Image

Django-Qr-Generator

Django-Qr-Generator is a Django project that allows you to generate QR code images and download them.

Getting Started

Follow these steps to run the project on your local machine.

1. Clone the Repository

git clone https://github.com/Ansarimajid/Django-QR.git
cd Django-QR

2. Set up Virtual Environment

pip install virtualenv
virtualenv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
pip install -r requirements.txt

3. Run the Project

python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver

4. Access Admin Page

Open your browser and go to http://127.0.0.1:8000/. To access the admin page, navigate to http://127.0.0.1:8000/admin and log in with the superuser credentials you created.

Usage

  1. After accessing the admin page, you can use the provided forms to create QR codes by entering the required information.

  2. Click on the "Generate QR Code" button.

  3. You can download the generated QR code image.

Contributing

If you want to contribute to this project, please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Make your changes and submit a pull request.

License

This project is licensed under the MIT License.

Acknowledgments

  • Thank you to the Django community and contributors.
  • QR code generation is powered by qrcode library.