Skip to content

CemWebDev/online-menu-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

online-menu-app

This project aims to create a simple online menu interface and integrate a menu link into a QR code generated with Python. The project uses SCSS for the frontend design of the menu interface and Python for QR code integration.

Table of Contents

Features

  • Responsive menu interface using SCSS.
  • QR code generation with Python and integration of the menu link into the code.
  • Fast access to the menu through QR code scanning, linked to the menu interface.

Screenshots

Desktop Preview

Mobile Preview

Scanning QR Code

  • You can access the online menu by scanning the QR code below.

Installation

  1. Clone the repository:
git clone https://github.com/SimplyProgYT/online-menu-qr-code.git
  1. Install the required packages:
pip install -r requirements.txt

Usage

  1. Generate the QR code with Python
   python generate_qr.py
  1. Compile SCSS to CSS
  • To generate the CSS files from SCSS, run your SCSS compiler. Note that the dist folder where the compiled CSS files are placed is listed in .gitignore, so these files are not tracked in the repository.

  • Make sure you have a tool like sass or another SCSS compiler installed. For example:

sass src/styles.scss dist/styles.css

-This command will compile src/styles.scss into dist/styles.css. Adjust the file paths as necessary based on your setup.