Skip to content

Commit 1ce0347

Browse files
committed
multiple docs improvements
1 parent 545708d commit 1ce0347

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+3848
-1462
lines changed

docs/backup/deploying-a-static-site-with-machines.md

Lines changed: 0 additions & 257 deletions
This file was deleted.

docs/getting-started/authentication.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@ lttle login --api https://eu.lttle.cloud <JWT>
1313
```
1414

1515
The only supported region is `eu`.
16+
17+
:::danger EARLY ACCESS
18+
19+
When your JWT token expires, please contact us to get a new one.
20+
21+
:::
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
sidebar_position: 3
3+
---
4+
5+
# Configuring your editor
6+
7+
To be able to benefit from YAML schema validation and autocompletion, we recommend setting up your code editor or IDE as described below.
8+
9+
## Visual Studio Code
10+
11+
Install the [YAML Language Support from RedHat](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml) extension for better YAML syntax highlighting and validation.
12+
13+
Create in the `.vscode` folder a `settings.json`, file with the following content:
14+
15+
```json
16+
{
17+
"yaml.schemas": {
18+
"https://resources.lttle.sh": "/*.lttle.yaml"
19+
}
20+
}
21+
```
22+
23+
This will also work for Visual Studio Code spinoffs like **Cursor**.
24+
25+
## Other Editors / IDEs
26+
27+
Check your editors documentation on how to add schema definitions for YAML files.
28+
29+
:::info
30+
31+
If you are having trouble setting up your editor, feel free to reach out to us on [Discord](https://discord.gg/xhNGGrZQja).
32+
33+
:::

0 commit comments

Comments
 (0)