blob: 17fc8714da0b7d16132341ec0066c28abc3d9848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Hurry Curry! Server (and others)
The server needs the [game data](../data/README.md) to function. Release builds
only check typical system installation paths or the windows registry. Debug
builds (without `--release`) will also check for a `data` folder in the working
directory.
## Development setup
Use the `fast_recipes` feature flag to decrease active/passive recipe duration.
Also enable `cheats` to change game duration and spawn arbitrary items and
tiles. There is also `debug_events` which sends additional debug information
(mainly bot related, like pathfinding); This information is only displayed in
test-client however and impacts performance negatively.
```
LOG=info cargo run --bin hurrycurry-server --features fast_recipes,cheats
```
|