You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 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._
0 commit comments