Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mbrsagor/drfqrcode
Django rest framework QRCode generated simple API app.
https://github.com/mbrsagor/drfqrcode
django django-rest-framework pyhton3 qrcode-decoder qrcode-generator
Last synced: 1 day ago
JSON representation
Django rest framework QRCode generated simple API app.
- Host: GitHub
- URL: https://github.com/mbrsagor/drfqrcode
- Owner: mbrsagor
- Created: 2019-11-02T18:08:25.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-28T05:17:46.000Z (5 months ago)
- Last Synced: 2024-06-28T06:29:02.622Z (5 months ago)
- Topics: django, django-rest-framework, pyhton3, qrcode-decoder, qrcode-generator
- Language: Python
- Homepage: https://github.com/mbrsagor/DRFQRCode
- Size: 19.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DRFQRCode
> Django rest framework QR code generated
### Setup::
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.#### Dependencies:
- Python 3.10
- Psql 14.1
###### Step 1:
> Clone project: Open your terminal and run the below commands.```
https://github.com/mbrsagor/DRFQRCode.git
cd DRFQRCode
```###### Step 2:
> Run the application in your local development server:```bash
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
```###### Install QR code if newly want.
```bash
pip install qrcode
```## Happy coding :wink: