https://github.com/arvind-4/qr-code
Simple QR Code Website With Django
https://github.com/arvind-4/qr-code
bootstrap5 css django django-application django-framework heroku heroku-deployment html5 python3
Last synced: about 2 months ago
JSON representation
Simple QR Code Website With Django
- Host: GitHub
- URL: https://github.com/arvind-4/qr-code
- Owner: arvind-4
- License: mit
- Created: 2021-07-22T13:13:53.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-06T13:20:34.000Z (over 2 years ago)
- Last Synced: 2025-05-15T19:11:27.547Z (about 1 year ago)
- Topics: bootstrap5, css, django, django-application, django-framework, heroku, heroku-deployment, html5, python3
- Language: HTML
- Homepage: https://awesomeqrcode.vercel.app
- Size: 5.74 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QR Code
Scan here to open our lightning-fast QR code reading website. Built with Django for performance, Bootstrap for design, and Vercel for reliability.
## 📦 Tech Stack:
- [Django](https://www.djangoproject.com/) - Django makes it easier to build better web apps more quickly and with less code.
- [Bootstrap](https://getbootstrap.com/) - Build fast, responsive sites with Bootstrap.
- [Vercel](https://vercel.com/) - Vercel's Front end Cloud provides the developer experience and infrastructure to build, scale, and secure a faster, more personalised Web.
## Demo:
## Getting Started:
- Clone repository
```bash
mkdir ~/Dev/qr-code -p
cd ~/Dev/qr-code
git clone https://github.com/Arvind-4/qr-code.git .
```
- Install Dependencies:
```bash
cd ~/Dev/qr-code
python3.8 -m pip install virtualenv
python3.8 -m virtualenv .
source bin/activate
pip install -r requirements.txt
```
- Create `.env` file:
Add Your Credentials `.env` from `sample.env`:
```bash
DJANGO_SECRET_KEY=
DJANGO_DEBUG=
```
Get your Secret key from:
```python
python -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())'
```
- Run Server:
```bash
cd ~/Dev/qr-code
python manage.py runserver
```
Open [localhost:8000](http://localhost:8000) in your favourite browser :)