rename the app to scoffer...everywhere

This commit is contained in:
2025-08-09 17:54:32 +01:00
parent 591ebdf5db
commit 8029d10264
11 changed files with 24 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
# Recipe Management App
# Scoffer
A full-stack recipe management application that allows users to browse recipes, select them for their menu, and automatically generate aggregated shopping lists.
@@ -30,7 +30,7 @@ A full-stack recipe management application that allows users to browse recipes,
## Project Structure
```
recipe-management-app/
scoffer/
├── backend/
│ ├── models/ # Database models
│ ├── routes/ # API routes
@@ -48,11 +48,11 @@ recipe-management-app/
└── README.md
```
## Setup Instructions
## Installation and Setup
### Prerequisites
- Node.js (v14 or higher)
- MongoDB (running locally or MongoDB Atlas)
- Node.js (v16 or higher)
- MongoDB (local installation or MongoDB Atlas)
- npm or yarn
### Backend Setup
@@ -70,11 +70,9 @@ recipe-management-app/
3. Create a `.env` file with your configuration using a copy of the `.envtemplate` file (for example):
```
PORT=5000
MONGODB_URI=mongodb://localhost:27017/recipe-management
MONGODB_USERNAME=admin
MONGODB_PASSWORD=password123
MONGODB_HOST=localhost
MONGODB_PORT=27017
MONGODB_DATABASE=recipe-management
MONGODB_DATABASE=scoffer
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
```