Skip to content

Commit 7a969b8

Browse files
committed
chore: remove cloud events, infinispan, pvp, s3, and prepare for red hat arcade build
1 parent e1eb0b2 commit 7a969b8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+420
-3402
lines changed

Dockerfile.dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ RUN apk add git
77

88
COPY . .
99

10-
EXPOSE 3000
10+
EXPOSE 8181
1111
ENV HUSKY_SKIP_HOOKS=1
1212
CMD npm i && npm run dev

README.md

+3-89
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# 2021-frontend-wss
1+
# Shipwars Game Server
22

3-
Simple WebSocket server that can be used for client development.
3+
WebSocket server for the Shipwars game.
44

55
## Requirements
66

@@ -9,90 +9,4 @@ Simple WebSocket server that can be used for client development.
99

1010
## Usage
1111

12-
### All Services in Dev Mode TDLR
13-
14-
First, get the 3 necessary services running:
15-
16-
```bash
17-
git clone https://github.com/rhdemo/2021-frontend-wss
18-
git clone https://github.com/rhdemo/2021-admin-hq
19-
git clone https://github.com/rhdemo/2021-frontend-css-html
20-
git clone https://github.com/rhdemo/2021-ai-agent-server
21-
22-
# Start the infinispan server and game websocket server
23-
cd 2021-frontend-wss
24-
./scripts/infinispan/infinispan-docker-compose/infinispan.start.sh
25-
./scripts/node.sh
26-
27-
# Start the AI Agent service (in another terminal)
28-
cd 2021-ai-agent-server
29-
./scripts/node.sh
30-
31-
# Start the Admin HQ (in another terminal)
32-
cd 2021-admin-hq
33-
./scripts/node.sh
34-
35-
# Start the UI service (in another terminal)
36-
cd 2021-frontend-css-html
37-
npm i -g yarn
38-
yarn install
39-
yarn start
40-
```
41-
42-
Open `http://localhost:3001` (the Admin UI), and click the *Play* button.
43-
44-
Next, open up `http://localhost:3002` in two separate browsers, or in a regular
45-
and incognito/private browsing session - this allows you to play as two players
46-
against each other on one machine!
47-
48-
To play against an AI opponent open the Game UI with this querystring
49-
`http://localhost:3002/?useAiOpponent=true`.
50-
51-
### Controlling the WSS Server Game State
52-
53-
Use the [Admin HQ Web UI](https://github.com/rhdemo/2021-admin-hq) to change
54-
the game state. You must select *Play* to make attacks in the game.
55-
56-
### Run in Dev Mode
57-
58-
Making changes to the TypeScript source code under the *src/* dir after
59-
running the commands below will cause the Node.js server to automatically
60-
restart with the new changes.
61-
62-
_NOTE: Both Infinispan and the Node.js run on a specific Docker network to facilitate communication. This is because Infinispan has some tricky networking behaviours to deal with when running in the Docker VM on macOS._
63-
64-
```
65-
git clone https://github.com/rhdemo/2021-frontend-wss
66-
cd 2021-frontend-wss
67-
68-
# Setup the inifispan server
69-
./scripts/infinispan/infinispan-docker-compose/infinispan.start.sh
70-
71-
# Start the node server with live reload
72-
./scripts/node/node.start.sh
73-
```
74-
75-
### Run in Production Mode
76-
77-
```
78-
git clone https://github.com/rhdemo/2021-frontend-wss
79-
cd 2021-frontend-wss
80-
81-
npm install
82-
npm build
83-
npm start
84-
```
85-
86-
## Simulating a Player/Client
87-
88-
Refer to the *[client-sim/](client-sim/)* folder.
89-
90-
## Endpoints
91-
92-
### HTTP
93-
94-
* `GET /health` - Returns a 200 response with application health information
95-
96-
### WebSocket
97-
98-
* `/game` - Endpoint that game clients connect to.
12+
TODO

knative/broker.yaml

-5
This file was deleted.

knative/test.source.yaml

-13
This file was deleted.

knative/trigger.attack.yaml

-12
This file was deleted.

0 commit comments

Comments
 (0)