Skip to content

Two-Weeks-Team/queuebite-784480

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QueueBite

AI Powered Python FastAPI Next.js MIT

Scan, wait, dine – no more standing in line.


Overview

Restaurant guests waste time waiting in physical lines and have no visibility into wait times, while staff struggle to track and manage the waitlist efficiently.

Key Features

  • Core functionality generated from your idea

Architecture

+------------------+        +---------------------+        +------------------+
|                  |  HTTP   |                     |  HTTP  |                  |
|   Next.js 16     +------->+   FastAPI Backend    +------->+  DO Inference    |
|   Frontend       |  REST   |   Python 3.14       |  AI    |  (gpt-5-mini)   |
|   (port 3000)    +<-------+   (port 8000)        +<------+                  |
|                  |  JSON   |                     |  JSON  |                  |
+------------------+        +----------+----------+        +------------------+
                                       |
                              +--------v--------+
                              |   PostgreSQL     |
                              |   (psycopg 3.3)  |
                              +-----------------+

API Endpoints

Method Path
GET /health

Tech Stack

Layer Technology Version
Runtime Python 3.14+
Backend FastAPI + uvicorn 0.135.1
Frontend Next.js + React 16.1.6 / 19.2.4
Database PostgreSQL + psycopg 3.3.3
AI DO Serverless Inference gpt-5-mini
Styling Tailwind CSS 4.2.1

Quick Start

Prerequisites

  • Python 3.14+
  • Node.js 24+

Run Locally

# Backend
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env   # fill in your keys
uvicorn main:app --reload --port 8000

# Frontend (new terminal)
cd web
npm install
npm run dev

Environment Variables

Copy .env.example to .env and fill in values:

  • API_BASE_URL
  • ENVIRONMENT
  • LOG_LEVEL

Deploying to DigitalOcean

This app is designed for DigitalOcean App Platform:

name: queuebite
services:
  - name: api
    github:
      repo: Two-Weeks-Team/queuebite
      branch: master
    build_command: pip install -r requirements.txt
    run_command: uvicorn main:app --host 0.0.0.0 --port $PORT
    http_port: 8080
    instance_size_slug: apps-s-1vcpu-0.5gb
    envs:
      - key: DIGITALOCEAN_INFERENCE_KEY
        scope: RUN_TIME
        type: SECRET
static_sites:
  - name: web
    github:
      repo: Two-Weeks-Team/queuebite
      branch: master
    source_dir: web
    build_command: npm install && npm run build
    output_dir: web/.next

Generated by vibeDeploy | Vibe Score: **60.4**

About

AI-powered restaurant queue management with QR codes. Deployed on DigitalOcean.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages