some more tweaks

This commit is contained in:
Craig
2020-01-14 11:00:43 +00:00
parent 6f1a2bb77a
commit f41ce5e5a0
4 changed files with 9 additions and 7 deletions

2
server/.env.development Normal file
View File

@ -0,0 +1,2 @@
DISPLAY=:0
PULSE_SERVER=unix:/tmp/pulseaudio.socket

View File

@ -7,10 +7,10 @@
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/neko",
"envFile": "${workspaceFolder}/.env",
"envFile": "${workspaceFolder}/.env.development",
"output": "${workspaceFolder}/bin/debug/neko",
"cwd": "${workspaceFolder}/",
"args": ["serve", "-d", "--bind", "0.0.0.0:3000", "--static", "../client/dist", "--password", "test"]
"args": ["serve", "-d", "--bind", ":3000", "--static", "../client/dist", "--password", "123"]
}
]
}