Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/half-shot/over-air-hockey
https://github.com/half-shot/over-air-hockey
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/half-shot/over-air-hockey
- Owner: Half-Shot
- License: mit
- Created: 2019-01-29T15:38:22.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-07T02:02:24.000Z (almost 6 years ago)
- Last Synced: 2024-12-09T20:08:53.738Z (about 1 month ago)
- Language: JavaScript
- Size: 1.13 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# over-air-hockey
TODO: More helpful description
## Building
### Client
Building the clients is as easy as:
```shell
cd displayApp
npm i
```**Before running**, edit `./displayApp/src/client.js` to include URLs for your webserver
which are probably "http://localhost".```
backendUrl: "http://localhost:9000/api",
wsUrl: "http://localhost:3000/ws",
joinUrl: "http://localhost:9000/client.html",
```Now you can start with `npm run dev`
### Backend
You will need to start this first before running the front-end. It's very simple:
```shell
cd backend
npm i
npm run start
```If the games get screwed up, just restart the backend. It's currently stateless.