Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply spell/style check to top level markdown files #149

Merged
merged 5 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/styles/Google/Acronyms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,5 @@ exceptions:
- XSS
- YAML
- ZIP
- RPC
- gRPC
21 changes: 20 additions & 1 deletion .github/styles/Vocab/Docs/accept.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
Restate
(?i)Restate
AWS
Awakeables
RPC
npm
npx
application/json
application
Podman
sharded
(?i)Unkeyed
(?i)suspendable
enqueued
(?i)implement
serverless
UUID
uuid
idempotency
boolean
exactly-once
backoff
Jaeger
1 change: 1 addition & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Run vale spell and style check
continue-on-error: true
uses: errata-ai/vale-action@reviewdog
with:
files: docs
Expand Down
8 changes: 5 additions & 3 deletions .vale.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ MinAlertLevel = suggestion

Packages = Google, proselint, write-good

[*.md]
BasedOnStyles = Vale, Google, proselint, write-good
# The "formats" section allows you to associate an "unknown" format
# with one of Vale's supported formats.
[formats]
mdx = md

[*.mdx]
[*.md]
BasedOnStyles = Vale, Google, proselint, write-good
4 changes: 2 additions & 2 deletions docs/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: ""
# Examples

Do you want to see Restate in action?
[Here](https://github.com/restatedev/examples) are some ready-to-run examples for you.
[Here](https://github.com/restatedev/examples) you find some ready-to-run examples.
Pick an example from the list below and follow the instructions in the README to run it.

## Starter examples
Expand All @@ -18,7 +18,7 @@ Pick an example from the list below and follow the instructions in the README to
## Intermediate examples

- [Ticket reservation system](https://github.com/restatedev/examples/tree/main/typescript/ticket-reservation): a subset of a ticket booking system to illustrate how Restate's keyed-sharding and concurrency guarantees simplify microservice architectures.
- [Food ordering](https://github.com/restatedev/examples/tree/main/typescript/food-ordering): The order processing middleware of a fast food chain implemented with awakeables and delayed calls.
- [Food ordering](https://github.com/restatedev/examples/tree/main/typescript/food-ordering): The order processing app of a fast food chain implemented with Awakeables and delayed calls.

## Advanced examples

Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ npm install && npm run build
Now, you are all set to start developing your service in `src/app.ts`.

## Step 3: Build and Run the Greeter service
Once you are done with implementing your service, build the app and run it:
Once you have implemented your service, build the app and run it:
```shell
npm run build
npm run app
Expand Down Expand Up @@ -84,7 +84,7 @@ Invoke the function via:
curl -X POST http://localhost:9090/myservice/hello -H 'content-type: application/json' -d '{"request": "Pete"}'
```

That's it! You managed to run your first Restate service.
Congratulations, you managed to run your first Restate service.

## Next steps

Expand Down
224 changes: 112 additions & 112 deletions docs/tour.mdx

Large diffs are not rendered by default.

Loading