Skip to content

New Docs #112

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

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
30 changes: 21 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
site/
_site/
*-venv/
venv-*/
src/
.idea/
.vscode/
__pycache__/
kodular-docs/
# build output
dist/
# generated types
.astro/

# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*


# environment variables
.env
.env.production

# macOS-specific files
.DS_Store
4 changes: 4 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}
11 changes: 11 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
File renamed without changes.
2 changes: 0 additions & 2 deletions _config.yml

This file was deleted.

53 changes: 53 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightLinksValidator from 'starlight-links-validator';

// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Kodular Docs',
favicon: '/favicon.ico',
logo: { src: './src/assets/logo.png', alt: 'Kodular Logo' },
social: {
github: 'https://github.com/Kodular/Documentation',
'x.com': 'https://x.com/@KodularIO',
youtube: 'https://youtube.com/@Kodular',
},
editLink: {
baseUrl: 'https://github.com/Kodular/Documentation/edit/master/',
},
sidebar: [
{
label: 'Guides',
collapsed: true,
autogenerate: { directory: 'guides' },
},
{
label: 'Blocks',
collapsed: true,
autogenerate: { directory: 'blocks' },
},
{
label: 'Components',
collapsed: true,
autogenerate: { directory: 'components' },
},
{
label: 'Support',
collapsed: true,
autogenerate: { directory: 'support' },
},
{
label: 'Release Notes',
collapsed: true,
autogenerate: { directory: 'release-notes' },
},
{ label: 'Pricing', slug: 'pricing' },
{ label: 'Terms of Service', slug: 'terms-of-service' },
],
plugins: [starlightLinksValidator()],
}),
],
});
Binary file added bun.lockb
Binary file not shown.
Empty file removed docs/blocks/any-component.md
Empty file.
43 changes: 0 additions & 43 deletions docs/blocks/colors.md

This file was deleted.

12 changes: 0 additions & 12 deletions docs/blocks/index.md

This file was deleted.

174 changes: 0 additions & 174 deletions docs/components/connectivity/activity-starter.md

This file was deleted.

Loading
Loading