mirror of
https://github.com/tmdinosaurcenter/kiosk-guestbook.git
synced 2025-04-10 14:11:28 -06:00
Updated the project structure to reflect the current structure.
This commit is contained in:
parent
a16b28d078
commit
320e358aa6
25
README.md
25
README.md
@ -18,14 +18,23 @@ Uses Docker and Docker Compose to create a production-ready environment with Gun
|
|||||||
## Project Structure
|
## Project Structure
|
||||||
```
|
```
|
||||||
kiosk-guestbook/
|
kiosk-guestbook/
|
||||||
├── app.py # Main Flask application with logging, validation, and database initialization
|
├── scripts/
|
||||||
├── requirements.txt # Python dependencies (Flask, Gunicorn, etc.)
|
│ ├── guestbook_export.py # Script to export guest entries (e.g., for Mailchimp)
|
||||||
├── Dockerfile # Production Dockerfile using Gunicorn
|
│ └── guestbook.db # SQLite database file (if stored here, mainly for development)
|
||||||
├── docker-compose.yml # Docker Compose configuration for container orchestration
|
├── static/
|
||||||
├── .env # Environment variables file (see template below)
|
│ └── images/
|
||||||
├── en.txt # Profanity list file (banned words, one per line)
|
│ └── logo.png # Logo for display in the application
|
||||||
└── templates/
|
├── templates/
|
||||||
└── index.html # HTML template for the guestbook user interface
|
│ └── index.html # Main HTML template for the guestbook
|
||||||
|
├── .env # Environment variables for Docker Compose (production settings)
|
||||||
|
├── app.py # Main Flask application code
|
||||||
|
├── docker-compose.yml # Docker Compose configuration for container orchestration
|
||||||
|
├── Dockerfile # Default Dockerfile (development or general usage)
|
||||||
|
├── en.txt # Profanity list file (one banned word per line)
|
||||||
|
├── production.Dockerfile # Optional Dockerfile optimized for production
|
||||||
|
├── README.md # Project documentation
|
||||||
|
└── requirements.txt # Python dependencies (Flask, Gunicorn, etc.)
|
||||||
|
|
||||||
```
|
```
|
||||||
## Getting Started
|
## Getting Started
|
||||||
Prerequisites
|
Prerequisites
|
||||||
|
Loading…
x
Reference in New Issue
Block a user