mirror of
https://github.com/tmdinosaurcenter/kiosk-guestbook.git
synced 2025-04-04 03:11:23 -06:00
Add screenshot to README.md lint MD for file. Add .db and VS Code files to .gitignore
This commit is contained in:
parent
79bbb02388
commit
241c563c6d
12
.gitignore
vendored
12
.gitignore
vendored
@ -172,3 +172,15 @@ cython_debug/
|
|||||||
|
|
||||||
# PyPI configuration file
|
# PyPI configuration file
|
||||||
.pypirc
|
.pypirc
|
||||||
|
|
||||||
|
# database
|
||||||
|
*.db
|
||||||
|
*.sqlite
|
||||||
|
*.sqlite3
|
||||||
|
*.sqlite-journal
|
||||||
|
*.sqlite3-journal
|
||||||
|
*.db-journal
|
||||||
|
|
||||||
|
# VS Code
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
37
README.md
37
README.md
@ -1,7 +1,11 @@
|
|||||||
## Museum Visitor Guestbook
|
# Museum Visitor Guestbook
|
||||||
|
|
||||||
A simple Flask-based guestbook application designed for an internal museum kiosk. This application collects visitor details (first name(s), last name, email, location, and an optional comment) while dynamically revealing the comment field only after the required fields are filled out with at least 3 characters each. The app includes basic input validation, profanity filtering using a custom banned words list, and logging for easier troubleshooting. It uses SQLite for data storage and is containerized with Docker and Docker Compose for easy deployment on an intranet.
|
A simple Flask-based guestbook application designed for an internal museum kiosk. This application collects visitor details (first name(s), last name, email, location, and an optional comment) while dynamically revealing the comment field only after the required fields are filled out with at least 3 characters each. The app includes basic input validation, profanity filtering using a custom banned words list, and logging for easier troubleshooting. It uses SQLite for data storage and is containerized with Docker and Docker Compose for easy deployment on an intranet.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Dynamic Form Behavior:
|
- Dynamic Form Behavior:
|
||||||
The comment field is hidden by default and only revealed when the first name, last name, and location fields each contain at least 3 characters.
|
The comment field is hidden by default and only revealed when the first name, last name, and location fields each contain at least 3 characters.
|
||||||
-Input Validation:
|
-Input Validation:
|
||||||
@ -16,7 +20,8 @@ Stores guest entries locally, with persistence ensured by mounting a Docker volu
|
|||||||
Uses Docker and Docker Compose to create a production-ready environment with Gunicorn as the WSGI server.
|
Uses Docker and Docker Compose to create a production-ready environment with Gunicorn as the WSGI server.
|
||||||
|
|
||||||
## Project Structure
|
## Project Structure
|
||||||
```
|
|
||||||
|
``` bash
|
||||||
kiosk-guestbook/
|
kiosk-guestbook/
|
||||||
├── scripts/
|
├── scripts/
|
||||||
│ ├── guestbook_export.py # Script to export guest entries (e.g., for Mailchimp)
|
│ ├── guestbook_export.py # Script to export guest entries (e.g., for Mailchimp)
|
||||||
@ -34,34 +39,48 @@ kiosk-guestbook/
|
|||||||
├── production.Dockerfile # Optional Dockerfile optimized for production
|
├── production.Dockerfile # Optional Dockerfile optimized for production
|
||||||
├── README.md # Project documentation
|
├── README.md # Project documentation
|
||||||
└── requirements.txt # Python dependencies (Flask, Gunicorn, etc.)
|
└── requirements.txt # Python dependencies (Flask, Gunicorn, etc.)
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
Prerequisites
|
|
||||||
|
### Prerequisites
|
||||||
|
|
||||||
- Docker
|
- Docker
|
||||||
- Docker Compose
|
- Docker Compose
|
||||||
|
|
||||||
### Building and Running the Application
|
### Building and Running the Application
|
||||||
### Build and Start Containers:
|
|
||||||
|
### Build and Start Containers
|
||||||
|
|
||||||
1. From the project root, run:
|
1. From the project root, run:
|
||||||
`docker-compose up --build -d`
|
`docker-compose up --build -d`
|
||||||
This command will build the Docker image, start the container in detached mode, and mount the persistent volume at /data for the SQLite database.
|
This command will build the Docker image, start the container in detached mode, and mount the persistent volume at `/data` for the SQLite database.
|
||||||
|
|
||||||
2. Access the Application:
|
2. Access the Application:
|
||||||
Open a web browser and navigate to http://<your-server-ip>:8000 (or the port specified in your .env file).
|
Open a web browser and navigate to `http://<your-server-ip>:8000` (or the port specified in your .env file).
|
||||||
|
|
||||||
### Deployment with Docker Compose
|
### Deployment with Docker Compose
|
||||||
|
|
||||||
The `docker-compose.yml` is configured to:
|
The `docker-compose.yml` is configured to:
|
||||||
-Build the image from the Dockerfile.
|
|
||||||
|
- Build the image from the Dockerfile.
|
||||||
- Expose the service on the specified port.
|
- Expose the service on the specified port.
|
||||||
- Mount a volume (named `guestbook_data`) at `/data` to persist your database.
|
- Mount a volume (named `guestbook_data`) at `/data` to persist your database.
|
||||||
- Load environment variables from the `.env` file
|
- Load environment variables from the `.env` file
|
||||||
|
|
||||||
### Logging and Monitoring
|
### Logging and Monitoring
|
||||||
|
|
||||||
- The application uses Python's built-in logging module.
|
- The application uses Python's built-in logging module.
|
||||||
- Key events (like database initialization, form submissions, and validation errors) are logged.
|
- Key events (like database initialization, form submissions, and validation errors) are logged.
|
||||||
- Logs can be viewed by running:
|
- Logs can be viewed by running:
|
||||||
`docker-compose logs -f`
|
`docker-compose logs -f`
|
||||||
|
|
||||||
## Additional Notes
|
## Additional Notes
|
||||||
|
|
||||||
- Intranet-Only Deployment:
|
- Intranet-Only Deployment:
|
||||||
This application is designed for internal use only. It is not exposed to the public internet.
|
This application is designed for internal use only. It is not exposed to the public internet.
|
||||||
- Database Persistence:
|
- Database Persistence:
|
||||||
The SQLite database is stored in a Docker volume (guestbook_data), ensuring that data persists even if containers are rebuilt.
|
The SQLite database is stored in a Docker volume (guestbook_data), ensuring that data persists even if containers are rebuilt.
|
||||||
- Production Considerations:
|
- Production Considerations:
|
||||||
The app runs with Gunicorn as a production-ready WSGI server. Make sure to adjust worker counts and resource limits as needed based on your server’s specifications.
|
|
||||||
|
The app runs with Gunicorn as a production-ready WSGI server. Make sure to adjust worker counts and resource limits as needed based on your server’s specifications.
|
||||||
|
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
Loading…
x
Reference in New Issue
Block a user