Django rest framework QR code generated
The following steps will walk you thru installation on a Mac. I think, Linux should be similar. It's also possible to develop on a Windows machine, but I've not documented the steps. If you've developed django apps on Windows, you should have little problem getting up and running.
- Python 3.10
- Psql 14.1
Clone project: Open your terminal and run the below commands.
https://github.com/mbrsagor/DRFQRCode.git
cd DRFQRCode
Run the application in your local development server:
virtualenv venv --python=python3.10
source venv/bin/activate
pip install -r requirements.txt
./manage.py makemigrations
./manage.py migrate
./manage.py createsuperuser
./mangae.py runserver
pip install qrcode