- Fix volume initialization causing NaN error that blocked JS execution - Add null checks and error handling in storage module - Defer AudioContext creation until user interaction - Add ship emoji as favicon on all pages
13 lines
149 B
Makefile
13 lines
149 B
Makefile
.PHONY: up down logs restart
|
|
|
|
up:
|
|
docker compose up -d
|
|
|
|
down:
|
|
docker compose down
|
|
|
|
logs:
|
|
docker compose logs -f
|
|
|
|
restart:
|
|
docker compose restart
|