Rename client to player.

This commit is contained in:
Luke Curley 2022-07-06 21:28:46 -07:00
parent d0a19d1375
commit f6163e7a70
22 changed files with 2 additions and 2 deletions

View File

@ -102,11 +102,11 @@ cd server
go run ./warp-server go run ./warp-server
``` ```
## Web ## Web Player
The web assets need to be hosted with a HTTPS server. If you're using a self-signed certificate, you will need to ignore the security warning in Chrome (Advanced -> proceed to localhost.warp.demo). This can be avoided by adding your certificate to the root CA but I'm too lazy to do that. The web assets need to be hosted with a HTTPS server. If you're using a self-signed certificate, you will need to ignore the security warning in Chrome (Advanced -> proceed to localhost.warp.demo). This can be avoided by adding your certificate to the root CA but I'm too lazy to do that.
``` ```
cd client cd player
yarn install yarn install
yarn serve yarn serve
``` ```