Initial commit: Shop Database Flask Application

Flask backend with Vue 3 frontend for shop floor machine management.
Includes database schema export for MySQL shopdb_flask database.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
cproudlock
2026-01-13 16:07:34 -05:00
commit 1196de6e88
188 changed files with 19921 additions and 0 deletions

15
.env.example Normal file
View File

@@ -0,0 +1,15 @@
# Flask configuration
FLASK_APP=wsgi.py
FLASK_ENV=development
SECRET_KEY=change-this-to-a-secure-random-string
# Database
DATABASE_URL=mysql+pymysql://user:password@localhost:3306/shopdb_flask
# JWT
JWT_SECRET_KEY=change-this-to-another-secure-random-string
JWT_ACCESS_TOKEN_EXPIRES=3600
JWT_REFRESH_TOKEN_EXPIRES=2592000
# Logging
LOG_LEVEL=INFO