mirror of
https://github.com/shadoll/sLogos.git
synced 2025-12-20 05:28:59 +00:00
- Add Rollup configuration for building and serving the application. - Implement logo scanning script to generate logos.json from logo files. - Create main App component to manage logo display and search functionality. - Develop LogoGrid and LogoList components for different viewing modes. - Add LogoModal component for logo preview with details. - Implement URL copying and logo downloading features. - Style components for improved user experience and responsiveness.
21 lines
492 B
YAML
21 lines
492 B
YAML
services:
|
|
logo-gallery-dev:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
container_name: logo-gallery-dev
|
|
ports:
|
|
- "5006:5000"
|
|
- "35729:35729"
|
|
volumes:
|
|
- ./src:/app/src
|
|
- ./public:/app/public
|
|
- ./rollup.config.js:/app/rollup.config.js
|
|
- ./package.json:/app/package.json
|
|
- ./scripts:/app/scripts
|
|
environment:
|
|
- NODE_ENV=development
|
|
- CHOKIDAR_USEPOLLING=true
|
|
- HOST=0.0.0.0
|
|
command: npm run dev
|