Skip to content

kausaratg/qrcode-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Qrcode-Generator

This is django Webapp that allows users to generate Qrcode or Barcode for links.

Description

  • The web app allows user to input the link and then it generates a Barcode or Qrcode for them
  • Build with Python, Django, HTML and CSS
  • The webapp can be added to diffrent projects

To Install and run the project

  1. Create a django environment
  2. clone the project (https://github.com/kausaratg/qrcode-Generator.git)
  3. Enter into the directory cd qrcode_gen
  4. Pull any recent change from main branch git pull origin main
  5. create a virtual env python -m venv env
  6. Activate the virtual env env/Scripts/activate
  7. Install dependencies pip install -r requirements.txt
  8. Make migration python manage.py makemigration
  9. Migrate the project python manage.py migrate
  10. Run local Server python manage.py runserver