blob: b60898794fe10f70c9fdf27e066a89019778a35c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
default:
echo "Available recipes: build, deploy, test, clean"
build:
pnpm build
deploy:
./scripts/deploy-to-deck.sh
test:
node --experimental-strip-types --test tests/steamLaunchOptions.test.ts
python3.12 -m unittest discover -s tests -p 'test_*.py'
watch:
ssh deck@192.168.0.6 "journalctl -f"
cef:
tail -f ~/.local/share/Steam/logs/cef_log.txt
clean:
rm -rf node_modules dist
sudo rm -rf /tmp/decky
|