Skip to content

Commit

Permalink
docs: added disclaimer and sane defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipHarald committed Jul 18, 2023
1 parent 376c103 commit ba64b5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Before you begin, you need to install the following tools:
- [nargo](https://noir-lang.org/getting_started/nargo_installation#installation)

### Running
The project requires four processes to run. They are referred to as terminals below. Once all processes are started the population of the DB will start. After a couple of minutes you can go to http://localhost:3000/leaderboards and explore the UI.
The project requires four processes to run. They are referred to as terminals below. Once all processes are started the population of the DB will start. After a couple of minutes you can go to http://localhost:3000/leaderboards and explore the UI. Sometimes The Graph crashes when the `match_mocker` is running, so after a while it can be closed.

```bash
# terminal 1 (Hardhat)
Expand Down
2 changes: 1 addition & 1 deletion packages/match_mocker/src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const MATCH_FREQUENCY = 500;
export const DEFAULT_NUMBER_OF_PLAYERS = 15;
export const DEFAULT_NUMBER_OF_PLAYERS = 6;
export const SKILL_CAP = 25;
2 changes: 1 addition & 1 deletion packages/match_mocker/src/player-db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const game_ids: GameId[] = [
"Chess",
"Poker",
"Starcraft",
"Street Fighter",
//"Street Fighter",
];

const player_ids: Player["id"][] = [];
Expand Down

0 comments on commit ba64b5e

Please sign in to comment.