mirror of
https://github.com/got-feedBack/feedBack.git
synced 2026-07-26 06:42:32 +00:00
Renames across the entire codebase: - slopsmith/Slopsmith/SLOPSMITH/SlopSmith -> feedBack/FeedBack/FEEDBACK/FeedBack - byron/Byron/Byrongamatos -> got-feedBack/got-feedBack/got-feedBack - /home/byron/ -> /opt/got-feedBack/ - byron@ougsoft.com -> hi@got-feedBack.org - github.com/byrongamatos/ -> github.com/got-feedback/ - com.byron. -> com.got-feedback. - SLOPSMITH_ env vars -> FEEDBACK_ with backward-compat fallback - Protocol/storage strings migrated with read-old/write-new pattern - window.slopsmith JS API -> window.feedBack (canonical) + backward-compat alias Refs: #rename-slopsmith
38 lines
1.3 KiB
YAML
38 lines
1.3 KiB
YAML
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
# Mount your song library folder (adjust path for your system)
|
|
- ${LIBRARY_PATH:-./library}:/dlc
|
|
# Persistent config and cache
|
|
- feedBack-config:/config
|
|
# Mount source for live reload during development
|
|
- ./static:/app/static
|
|
- ./server.py:/app/server.py
|
|
- ./VERSION:/app/VERSION
|
|
- ./ug_browser.py:/app/ug_browser.py
|
|
- ./lib:/app/lib
|
|
- ./plugins:/app/plugins
|
|
- ./.git:/app/.git:ro
|
|
environment:
|
|
- PYTHONPATH=/app/lib:/app
|
|
- DLC_DIR=/dlc
|
|
- CONFIG_DIR=/config
|
|
# Write note_detect recordings to the host-visible bind mount (./static)
|
|
# rather than the /config Docker volume: recorded takes (and training
|
|
# bundles) then land in static/note_detect_recordings/ on the host, where
|
|
# the offline harness can read them directly.
|
|
- STATIC_DIR=/app/static
|
|
# Logging (optional)
|
|
# - LOG_LEVEL=DEBUG # DEBUG | INFO | WARNING | ERROR (default: INFO)
|
|
# - LOG_FORMAT=json # json | text (default: text — coloured console)
|
|
# - LOG_FILE=/config/feedBack.log # also write to a persistent file
|
|
dns:
|
|
- 8.8.8.8
|
|
- 1.1.1.1
|
|
|
|
volumes:
|
|
feedBack-config:
|