Skip to content

Commit 9f0278e

Browse files
authored
Merge pull request #318 from Kiln-AI/main
Update docs fot v0.16
2 parents 7b38b2f + ea81cf5 commit 9f0278e

File tree

125 files changed

+8331
-1727
lines changed

Some content is hidden

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

125 files changed

+8331
-1727
lines changed

.cursorrules

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
- call me "boss"
2+
- We always use typescript, not javascript
23
- Always assume pydantic 2 (not pydantic 1)
34
- The project supports Python 3.10 and above
45
- When writing tests:
56
1) Always use pytest for tests in python code
67
2) assume an appriopirate test file already exists, find it, and suggest tests get appended to that file. If no such file exists, ask me before assuming a new test file is the correct route.
78
3) Test brevity is important. Use approaches for re-use and brevity including using fixtures for repeated code, and using pytest parameterize for similar tests
9+
4) After writing a new test, run it and ensure it works. Fix any issues you find.
810

911

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
build:
8+
name: Build, Typecheck, and Test Python
89
runs-on: ubuntu-latest
910
strategy:
1011
matrix:

.github/workflows/build_desktop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
build:
8+
name: Build Desktop Apps
89
runs-on: ${{ matrix.os }}
910
strategy:
1011
fail-fast: false

.github/workflows/build_docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ permissions:
1313

1414
jobs:
1515
build:
16+
name: Build Docs
1617
runs-on: ubuntu-latest
1718

1819
steps:

.github/workflows/format_and_lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212

1313
jobs:
1414
format_and_lint:
15+
name: Format and Lint Python
1516
runs-on: ubuntu-latest
1617

1718
steps:

.github/workflows/test_count.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
jobs:
99
count_tests:
10+
name: Count Tests
1011
runs-on: ubuntu-latest
1112

1213
steps:

.github/workflows/web_format_lint_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
webui_checks:
7-
name: Code Format, Lint, Typecheck, Test, and Build
7+
name: Web UI Code Format, Lint, Typecheck, Test, and Build
88
runs-on: ubuntu-latest
99
defaults:
1010
run:

CONTRIBUTING.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,27 @@ To confirm everything works locally, run:
5656
```bash
5757
./checks.sh
5858
```
59+
60+
## Optional Setup
61+
62+
### IDE Extensions
63+
64+
We suggest the following extensions for VSCode/Cursor. With them, you'll get compliant formatting and linting in your IDE.
65+
66+
- Prettier
67+
- Pylance
68+
- Python
69+
- Python Debugger
70+
- Ruff
71+
- Svelte for VS Code
72+
- Vitest
73+
- ESLint
74+
- Cursor Pyright
75+
76+
### llms.txt
77+
78+
Vibing? Here are some [llms.txt](https://llmstxt.org) you may want to add.
79+
80+
Usage: `@docs Svelte` in cursor lets the LLM read the docs of the specified library. Most popular libraries added by Cursor automatically, but here are some to add manually:
81+
82+
- daisyUI’s: https://daisyui.com/docs/editor/cursor/

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<p align="center">
2-
<picture>
3-
<img width="205" alt="Kiln AI Logo" src="https://github.com/user-attachments/assets/5fbcbdf7-1feb-45c9-bd73-99a46dd0a47f">
4-
</picture>
2+
<a href="https://getkiln.ai">
3+
<picture>
4+
<img width="205" alt="Kiln AI Logo" src="https://github.com/user-attachments/assets/5fbcbdf7-1feb-45c9-bd73-99a46dd0a47f">
5+
</picture>
6+
</a>
57
</p>
68
<h3 align="center">
79
Rapid AI Prototyping and Dataset Collaboration Tool

app/desktop/WinInnoSetup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#define MyAppPath "build\dist\Kiln"
55
#define MyAppName "Kiln"
6-
#define MyAppVersion "0.15.0"
6+
#define MyAppVersion "0.16.0"
77
#define MyAppPublisher "Chesterfield Laboratories Inc"
88
#define MyAppURL "https://getkiln.ai"
99
#define MyAppExeName "Kiln.exe"

0 commit comments

Comments
 (0)