Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emre-guler/wedding
This project was generated with the assistance of AI (Claude 3.5 Sonnet) to create a wedding memory collection application.
https://github.com/emre-guler/wedding
ai-generated python
Last synced: 1 day ago
JSON representation
This project was generated with the assistance of AI (Claude 3.5 Sonnet) to create a wedding memory collection application.
- Host: GitHub
- URL: https://github.com/emre-guler/wedding
- Owner: emre-guler
- License: apache-2.0
- Created: 2024-08-13T21:13:31.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-12-31T07:15:27.000Z (16 days ago)
- Last Synced: 2025-01-09T09:19:29.299Z (7 days ago)
- Topics: ai-generated, python
- Language: HTML
- Homepage:
- Size: 31.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wedding Memory Collection App
> **Note**: This project was generated with the assistance of AI (Claude 3.5 Sonnet) to create a wedding memory collection application.
A web application for collecting and sharing wedding memories, including photos, videos, and notes from guests.
## Features
- Photo and video upload functionality
- Guest note submission with video messages
- Memory gallery viewing
- Simple and elegant user interface
- Responsive design for all devices## Technology Stack
- Backend: Python Flask
- Frontend: HTML, CSS, JavaScript
- File Storage: Local storage with JSON for data persistence
- CORS enabled for cross-origin requests## Installation
1. Clone the repository:
```bash
git clone https://github.com/emre-guler/wedding.git
cd wedding-memory-app
```2. Create a virtual environment and activate it:
```bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
```3. Install dependencies:
```bash
pip install -r requirements.txt
```4. Run the application:
```bash
python app.py
```The server will start at `http://localhost:3000`
## Project Structure
```
wedding-memory-app/
├── app.py # Main Flask application
├── requirements.txt # Python dependencies
├── uploads/ # Directory for uploaded files
├── index.html # Main page
├── memories.html # Memories gallery page
└── notes.html # Guest notes page
```## API Endpoints
- `POST /upload` - Upload photos and videos
- `POST /submit_note` - Submit guest notes with video
- `POST /submit_wish` - Submit wishes
- `GET /get_wishes` - Retrieve all wishes
- `GET /uploads/` - Serve uploaded files## AI Generation Notice
This project was generated with the assistance of Claude 3.5 Sonnet, an AI language model. The AI helped with:
- Creating the Flask backend structure
- Implementing file upload functionality
- Designing the frontend interface
- Writing API endpoints
- Generating documentationWhile the code is functional, it's recommended to review and test thoroughly before deployment in a production environment.
## License
This project is licensed under the MIT License - see the LICENSE file for details.