Skip to content

Commit 7fc05c9

Browse files
authored
docs: customize website (#25)
* docs: customize website * chore: rename App Kit to AppKit
1 parent e95179e commit 7fc05c9

Some content is hidden

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

48 files changed

+816
-1212
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pnpm install
1515
## Local Development
1616

1717
```bash
18-
pnpm start
18+
pnpm dev
1919
```
2020

2121
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

docs/blog/2019-05-28-first-blog-post.md

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

docs/blog/2019-05-29-long-blog-post.md

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

docs/blog/2021-08-01-mdx-blog-post.mdx

Lines changed: 0 additions & 24 deletions
This file was deleted.
-93.9 KB
Binary file not shown.

docs/blog/2021-08-26-welcome/index.md

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

docs/blog/authors.yml

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

docs/blog/tags.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"label": "Core Concepts",
3+
"position": 2,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "Learn about the fundamental concepts and principles behind AppKit."
7+
}
8+
}
Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
1-
SDK Core Principles
2-
1. Highly Opinionated
3-
The SDK must provide a clear path with best practices for building Databricks
1+
# Principles
2+
3+
## 1. Highly Opinionated
4+
AppKit must provide a clear path with best practices for building Databricks
45
applications. We provide strong defaults, with advanced customization when needed.
5-
2. Built for Application Use Cases
6+
## 2. Built for Application Use Cases
67
This SDK is for application development, not infrastructure management.
78
Databricks' internal implementation details must be abstracted. We're building an
89
application SDK, not a service wrapper.
9-
3. Delightful Developer Experience
10+
## 3. Delightful Developer Experience
1011
Every interface, doc, example, tool, and implementation must provide developer joy. Combined with the Highly Opinionated principle, this creates a true plug-and-play experience.
11-
4. Zero-Trust Security
12+
## 4. Zero-Trust Security
1213
Minimize exposed surface area, fail safely by default, and validate all inputs.
13-
The SDK must always have a zero-trust mindset.
14-
5. Optimized for Humans and AI
14+
AppKit must always have a zero-trust mindset.
15+
## 5. Optimized for Humans and AI
1516
Developers and LLMs both use this SDK. Every API must be discoverable,
1617
self-documenting, and inferable by both types of users. Test with both.
17-
6. Production-Ready from Day One
18+
## 6. Production-Ready from Day One
1819
Even the smallest feature can be used by enterprise users, so everything
1920
shipped must be production-ready. Observability, reliability, and scalability
2021
since day one.
21-
7. Layered Extensibility
22-
The SDK provides high-level plugins, low-level primitives, and extension points for custom plugins. It integrates into any application architecture and never blocks your path forward.
22+
## 7. Layered Extensibility
23+
AppKit provides high-level plugins, low-level primitives, and extension points for custom plugins. It integrates into any application architecture and never blocks your path forward.
2324

0 commit comments

Comments
 (0)