18 lines
405 B
Markdown
18 lines
405 B
Markdown
# Game server (`NeonSprawl.Server`)
|
|
|
|
ASP.NET Core **.NET 10** host for authoritative simulation (prototype: HTTP + health only).
|
|
|
|
## Run
|
|
|
|
```bash
|
|
cd server/NeonSprawl.Server
|
|
dotnet run
|
|
```
|
|
|
|
- Default URL is printed by Kestrel (see `Properties/launchSettings.json`, typically `http://localhost:5253`).
|
|
- Check `GET /health` for a JSON heartbeat.
|
|
|
|
## Solution
|
|
|
|
From repo root: `dotnet build NeonSprawl.sln`
|