Skip to content

Commit 1f96aa4

Browse files
committed
chore: minor updates
1 parent 1f51b7f commit 1f96aa4

44 files changed

Lines changed: 3138 additions & 1169 deletions

Some content is hidden

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

.config/bunpress.ts

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
import type { BunPressConfig } from 'bunpress'
2+
3+
const config: BunPressConfig = {
4+
name: 'gitit',
5+
description: 'A powerful template and project scaffolding tool for GitHub, GitLab, and Bitbucket',
6+
url: 'https://gitit.sh',
7+
8+
nav: [
9+
{ text: 'Guide', link: '/guide/introduction' },
10+
{ text: 'Providers', link: '/providers/github' },
11+
{ text: 'API', link: '/api/reference' },
12+
{ text: 'GitHub', link: 'https://github.com/stacksjs/gitit' },
13+
],
14+
15+
sidebar: {
16+
'/guide/': [
17+
{
18+
text: 'Getting Started',
19+
items: [
20+
{ text: 'Introduction', link: '/guide/introduction' },
21+
{ text: 'Installation', link: '/guide/installation' },
22+
{ text: 'Quick Start', link: '/guide/quick-start' },
23+
],
24+
},
25+
],
26+
'/providers/': [
27+
{
28+
text: 'Template Providers',
29+
items: [
30+
{ text: 'GitHub', link: '/providers/github' },
31+
{ text: 'GitLab', link: '/providers/gitlab' },
32+
{ text: 'Bitbucket', link: '/providers/bitbucket' },
33+
{ text: 'Custom Registries', link: '/providers/custom-registries' },
34+
],
35+
},
36+
],
37+
'/features/': [
38+
{
39+
text: 'Features',
40+
items: [
41+
{ text: 'Template Downloads', link: '/features/template-downloads' },
42+
{ text: 'Monorepo Support', link: '/features/monorepo-support' },
43+
{ text: 'Authentication', link: '/features/authentication' },
44+
{ text: 'Caching', link: '/features/caching' },
45+
],
46+
},
47+
],
48+
'/advanced/': [
49+
{
50+
text: 'Advanced',
51+
items: [
52+
{ text: 'Configuration', link: '/advanced/configuration' },
53+
{ text: 'Custom Providers', link: '/advanced/custom-providers' },
54+
{ text: 'Performance', link: '/advanced/performance' },
55+
{ text: 'CI/CD Integration', link: '/advanced/ci-cd' },
56+
],
57+
},
58+
],
59+
'/api/': [
60+
{
61+
text: 'API Reference',
62+
items: [
63+
{ text: 'downloadTemplate', link: '/api/reference' },
64+
{ text: 'Plugins', link: '/api/plugins' },
65+
],
66+
},
67+
],
68+
},
69+
70+
themeConfig: {
71+
colors: {
72+
primary: '#f97316',
73+
},
74+
},
75+
}
76+
77+
export default config
File renamed without changes.

.cursor/rules/code-style.mdc

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

.cursor/rules/documentation.mdc

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

.cursor/rules/error-handling.mdc

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

.cursor/rules/key-conventions.mdc

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

.cursor/rules/project-structure.mdc

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

.cursor/rules/readme.mdc

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

.cursor/rules/syntax-formatting.mdc

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

0 commit comments

Comments
 (0)