From 35ac31be7fc8468242f0b7cbad1b8da6e9a3b61f Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Wed, 2 Apr 2025 08:08:36 -0600 Subject: [PATCH] Rename production.Dockerfile to development.Dockerfile. It was a late night, ok? Updated README.md to include removal of DB from repo. --- README.md | 5 ++--- production.Dockerfile => development.Dockerfile | 0 2 files changed, 2 insertions(+), 3 deletions(-) rename production.Dockerfile => development.Dockerfile (100%) diff --git a/README.md b/README.md index fd1a110..c4558f4 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,7 @@ Uses Docker and Docker Compose to create a production-ready environment with Gun ``` bash kiosk-guestbook/ ├── scripts/ -│ ├── guestbook_export.py # Script to export guest entries (e.g., for Mailchimp) -│ └── guestbook.db # SQLite database file (if stored here, mainly for development) +│ └── guestbook_export.py # Script to export guest entries (e.g., for Mailchimp) ├── static/ │ └── images/ │ └── logo.png # Logo for display in the application @@ -36,7 +35,7 @@ kiosk-guestbook/ ├── 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 +├── development.Dockerfile # Optional Dockerfile optimized for production ├── README.md # Project documentation └── requirements.txt # Python dependencies (Flask, Gunicorn, etc.) ``` diff --git a/production.Dockerfile b/development.Dockerfile similarity index 100% rename from production.Dockerfile rename to development.Dockerfile