📚 next and previous page buttons

This commit is contained in:
EntireTwix 2021-07-05 02:36:27 -07:00
parent 1f39a353e5
commit a5d06bfa70
10 changed files with 25 additions and 8 deletions

View file

@ -0,0 +1 @@
[PREVIOUS PAGE](building.md)

View file

@ -52,4 +52,5 @@ with `-D`
``` ```
cmake <flags of your choice or none> .. cmake <flags of your choice or none> ..
make -j<threads> make -j<threads>
``` ```
[PREVIOUS PAGE](features/implementation.md) | [NEXT PAGE](FAQ.md)

View file

@ -0,0 +1 @@
[PREVIOUS PAGE](how_to/endpoints.md) | [NEXT PAGE](../features/user_side.md)

View file

@ -1,2 +1,4 @@
| language | | language |
| -------- | | -------- |
[PREVIOUS PAGE](explanation.md) | [NEXT PAGE](endpoints.md)

View file

@ -1,5 +1,7 @@
# API endpoints # API endpoints
[PREVIOUS PAGE](endpoints.md) | [NEXT PAGE](../existing_services.md)
## KEY ## KEY
`Jresp` - Json Response, json must be accepted in the `Accept` header, be that via `application/json` or `*/*`, failing to do so results in error `406` `Jresp` - Json Response, json must be accepted in the `Accept` header, be that via `application/json` or `*/*`, failing to do so results in error `406`
@ -24,4 +26,5 @@
| name | v1 | | name | v1 |
| :----- | :----------------: | | :----- | :----------------: |
| GetBal | :heavy_check_mark: | | GetBal | :heavy_check_mark: |
| GetLog | :heavy_check_mark: | | GetLog | :heavy_check_mark: |

View file

@ -16,4 +16,6 @@ to make a connected service yourself you can do so by using one of the [langauge
if an API does not exist for your language it is simple to make one, and I encourage you to add it to this list if you do decide to. if an API does not exist for your language it is simple to make one, and I encourage you to add it to this list if you do decide to.
while developing make sure to reference the list of [endpoints](endpoints.md) while developing make sure to reference the list of [endpoints](endpoints.md)
[PREVIOUS PAGE](../../contributors.md) | [NEXT PAGE](APIs.md)

View file

@ -5,4 +5,6 @@
| [Luke](https://github.com/LukeeeeBennett) | Docker package | | [Luke](https://github.com/LukeeeeBennett) | Docker package |
| [React](https://github.com/Reactified) | logo | | [React](https://github.com/Reactified) | logo |
| [Expand](https://github.com/Expand-sys) | fixed docker package | | [Expand](https://github.com/Expand-sys) | fixed docker package |
| [Doggo](https://github.com/FearlessDoggo21) | Logs optimized | | [Doggo](https://github.com/FearlessDoggo21) | Logs optimized |
[PREVIOUS PAGE](idea.md) | [NEXT PAGE](connected_services/how_to/explanation.md)

View file

@ -5,4 +5,5 @@
## drogon webframework ## drogon webframework
## multi-threading support ## multi-threading support
## intelligent saving ## intelligent saving
## Backwards Compatible API ## Backwards Compatible API
[PREVIOUS PAGE](user_side.md) | [NEXT PAGE](../building.md)

View file

@ -2,4 +2,6 @@
## Performance ## Performance
## Accessibility ## Accessibility
## Security ## Security
## Other ## Other
[PREVIOUS PAGE](../connected_services/existing_services.md) | [NEXT PAGE](implementation.md)

View file

@ -20,4 +20,6 @@ or on localhost:
running it local to the minecraft server reduces latency for ComputerCraft connected services, fortunately CCash is sufficiently lightweight as to not impact performance on most setups. running it local to the minecraft server reduces latency for ComputerCraft connected services, fortunately CCash is sufficiently lightweight as to not impact performance on most setups.
**DISCLAIMER: if you are to run it locally and want to use ComputerCraft with it, make sure to add `127.0.0.1` to ComputerCraft's config section `allowed_domains`** **DISCLAIMER: if you are to run it locally and want to use ComputerCraft with it, make sure to add `127.0.0.1` to ComputerCraft's config section `allowed_domains`**
[PREVIOUS PAGE](../README.md) | [NEXT PAGE](contributors.md)