Sign inSign up

asturbike/weddingcapture

By asturbike

Updated almost 2 years ago

wedding photo

Image
Web servers
0

601

asturbike/weddingcapture repository overview

WeddingCapture

Descripción

WeddingCapture es una aplicación web diseñada para capturar y almacenar momentos especiales en bodas y eventos familiares. A través de esta plataforma, los invitados pueden subir fotos y videos directamente desde sus dispositivos móviles, creando un álbum colectivo que puede ser visualizado y compartido fácilmente. Esta herramienta ofrece una experiencia de photocall interactivo, permitiendo que cada asistente contribuya a la celebración.

Características

  • Subida fácil de fotos y videos: Los usuarios pueden tomar fotos y grabar videos directamente desde su navegador.
  • Visualización en tiempo real: Las imágenes y videos subidos están disponibles inmediatamente para ser visualizados por todos los asistentes.
  • Interfaz amigable: La aplicación cuenta con un diseño intuitivo y accesible.

Requisitos

  • Docker y Docker Compose instalados en tu máquina.

Uso

Configuración del Entorno
  1. Crea un Archivo .env

    Crea un archivo llamado .env en el directorio donde ejecutarás el contenedor y define las siguientes variables:

    
    WEB_TITLE=Boda de Ana y Jose: Haz una Foto!
    LANGUAGE=ES  # Establecer 'EN' para inglés o 'ES' para español
    
2. Configura Docker Compose

Asegúrate de que tu archivo docker-compose.yml está configurado para usar el archivo .env:


services:
  weddingcapture:
    image: asturbike/weddingcapture:v1.0
    ports:
      - "5000:5000"
    volumes:
      - ./uploads:/app/uploads
    env_file:
      - .env
    restart: always

WeddingCapture Documentation

Description

WeddingCapture is a web application designed to allow guests at weddings and family events to easily upload photos and videos. The idea is to create a modern experience similar to a photocall, where all the memories of the event can be viewed in one place.

Requirements

  • Docker
  • Docker Compose

Installation

1. Create a .env File

Create a file named .env in the directory where you will run the container and define the following variables:


WEB_TITLE=Wedding of Ana and Jose: Take a Photo!
LANGUAGE=ES  # Set to 'EN' for English or 'ES' for Spanish
2. Configure Docker Compose

Ensure that your docker-compose.yml file is set up to use the .env file:

services:
  weddingcapture:
    image: asturbike/weddingcapture:v1.0
    ports:
      - "5000:5000"
    volumes:
      - ./uploads:/app/uploads
    env_file:
      - .env
    restart: always

Tag summary

Content type

Image

Digest

sha256:a35f36e47

Size

49.6 MB

Last updated

almost 2 years ago

docker pull asturbike/weddingcapture:v1.0