We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f018575 commit 44779aeCopy full SHA for 44779ae
1 file changed
readme.md
@@ -8,14 +8,14 @@
8
See instructions at https://www.microsoft.com/net/core
9
10
## Docker
11
-```
+```bash
12
cd=`pwd`
13
docker pull mcr.microsoft.com/dotnet/sdk:10.0
14
docker run -v "$(pwd)":/work -w /work -it -p 5000:80 mcr.microsoft.com/dotnet/sdk:10.0 bash
15
```
16
17
## Database
18
19
# in terminal:
20
docker volume create rethinkdb_data
21
docker run --rm -it --name rethinkdb-manual -v rethinkdb_data:/data -p 8080:8080 -p 28015:28015 -p 29015:29015 rethinkdb
@@ -34,14 +34,14 @@ r.grant("openrct2-api-live", {"config": true})
34
35
36
## Building / Launching
37
38
cd src/OpenRCT2.API
39
dotnet run
40
41
42
## Configuration
43
~/.openrct2/api.config.yml:
44
+```yaml
45
api:
46
bind:
47
baseUrl:
0 commit comments