Skip to content

Commit

Permalink
chore: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
micahg committed Sep 2, 2024
1 parent 22568f8 commit 7936469
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# General Contribution Guidelines

TBD, but here are some things we should read:


* [Data Model](packages/api/README.md#data-model)

# Upgrading OpenTelemetry

Dependencies seem to be problematic -- I once got into a situation where `@opentelemetry/api` version `@1.9.0` was in my package.json but `1.8.0` was getting installed as the dependency of the other otel dependencies, causing conflicts. Cleaning up the packages seemed to help:
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ And then everything should be available on http://localhost:8080/.
| ------------ | ---------------- |
|[![Installing tbltp](https://img.youtube.com/vi/_ADo3CKNORU/default.jpg)](https://youtu.be/_ADo3CKNORU)|[![tbltp editor](https://img.youtube.com/vi/-1dxslmHktc/default.jpg)](https://youtu.be/-1dxslmHktc)|

## Development

See [Contributing](CONTRIBUTING.md)
14 changes: 14 additions & 0 deletions packages/api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ TABLESTATE ||--|| SCENE : shows
GAME ||--o{ SCENE : contains
SCENE ||--o{ ENTITY : contains
ENTITY ||--o| TOKEN : draws
COMBAT ||--o{ ENTITY : orders
GM {
guid id
}
Expand All @@ -76,6 +82,14 @@ TABLESTATE {
GAME {
string name
}
ENTITY {
boolean visible
}
TOKEN {
sting url
}
```

## File Layout
Expand Down

0 comments on commit 7936469

Please sign in to comment.