feat: implement background color and night mode settings in the TV control app
All checks were successful
Build App / build (push) Successful in 7m10s
All checks were successful
Build App / build (push) Successful in 7m10s
This commit is contained in:
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
services:
|
||||
tv:
|
||||
image: node:22
|
||||
working_dir: /app
|
||||
volumes:
|
||||
- ./tv:/app
|
||||
- tv_node_modules:/app/node_modules
|
||||
ports:
|
||||
- "4173:4173"
|
||||
command: >
|
||||
sh -c "
|
||||
npm install -g pnpm --silent &&
|
||||
pnpm install &&
|
||||
pnpm build &&
|
||||
IP=$(hostname -I | awk '{print $1}') &&
|
||||
echo \"\" &&
|
||||
echo \"==> TV UI available at http://$$IP:4173\" &&
|
||||
echo \"\" &&
|
||||
pnpm preview --host 0.0.0.0 --port 4173
|
||||
"
|
||||
|
||||
volumes:
|
||||
tv_node_modules:
|
||||
Reference in New Issue
Block a user