From 4369732745150ca7edb60891c103da483720ac97 Mon Sep 17 00:00:00 2001 From: Joshua Ryder Date: Fri, 2 May 2025 08:52:31 -0400 Subject: [PATCH] Update README.md Added more info on running in Docker. --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cddeecf..4aa2681 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ A modern event RSVP management system with customizable backgrounds and item coordination. +This project was created completely by the [Cursor AI Code Editor](https://www.cursor.com/)! + ## Features - Event Creation and Management @@ -52,10 +54,22 @@ A modern event RSVP management system with customizable backgrounds and item coo ### Installation +#### Docker Compose + 1. Clone the repository 2. Run `docker-compose up` to start the application 3. Access the application at `http://localhost:3000` +#### Docker Run + +1. Run these commands: +``` +docker volume create rsvp-manager_data +docker volume create rsvp-manager_uploads +docker run --name rsvp_manager -p 3000:3000 -v rsvp-manager_data:/app -v rsvp-manager_uploads:/app/uploads -e NODE_ENV=production --restart unless-stopped +``` +2. Access the application at `http://localhost:3000` + ## Development ### Local Development Setup @@ -138,4 +152,4 @@ Note: Replace `` with your actual Authentik instance URL. ## License -MIT \ No newline at end of file +MIT