Skip to content

Commit 33e8868

Browse files
committed
docs: add nextra docs
1 parent 4be7ba0 commit 33e8868

Some content is hidden

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

87 files changed

+6342
-0
lines changed

docs/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
.next/
3+
.idea/
4+
.DS_Store

docs/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Carl-Robert Linnupuu
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

docs/next-env.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/basic-features/typescript for more information.

docs/next.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const withNextra = require('nextra')({
2+
theme: 'nextra-theme-docs',
3+
themeConfig: './theme.config.tsx',
4+
})
5+
6+
module.exports = withNextra({
7+
images: {
8+
domains: ['www.tryproxy.io'],
9+
},
10+
})

docs/package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "proxyai-docs",
3+
"version": "0.0.1",
4+
"description": "ProxyAI Documentation",
5+
"scripts": {
6+
"dev": "next dev",
7+
"build": "next build",
8+
"start": "next start"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+hhttps://github.com/carlrobertoh/ProxyAI.git"
13+
},
14+
"author": "Carl-Robert Linnupuu <carlrobertoh@gmail.com>",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/carlrobertoh/ProxyAI/issues"
18+
},
19+
"homepage": "https://github.com/carlrobertoh/ProxyAI/issues#readme",
20+
"dependencies": {
21+
"@vercel/analytics": "^1.5.0",
22+
"next": "^14.2.3",
23+
"nextra": "^2.13.4",
24+
"nextra-theme-docs": "^2.13.4",
25+
"react": "^18.2.0",
26+
"react-dom": "^18.2.0"
27+
},
28+
"devDependencies": {
29+
"@types/node": "18.11.10",
30+
"typescript": "^4.9.3"
31+
}
32+
}

docs/pages/_app.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import type { AppProps } from 'next/app'
2+
import { Analytics } from '@vercel/analytics/react'
3+
4+
export default function App({ Component, pageProps }: AppProps) {
5+
return (
6+
<>
7+
<Component {...pageProps} />
8+
<Analytics />
9+
</>
10+
)
11+
}

docs/pages/_meta.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"index": "Introduction",
3+
"getting-started": "Getting Started",
4+
"agent": "Agent",
5+
"features": "Features",
6+
"context": "Context",
7+
"providers": "Providers",
8+
"configuration": "Configuration",
9+
"enterprise": "Enterprise",
10+
"privacy": "Privacy & Security",
11+
"tutorials": "Tutorials",
12+
"about": {
13+
"title": "About",
14+
"type": "page",
15+
"href": "https://tryproxy.io"
16+
},
17+
"contact": {
18+
"title": "Contact ↗",
19+
"type": "page",
20+
"href": "mailto:contact@codegpt.ee",
21+
"newWindow": true
22+
}
23+
}

docs/pages/agent/_meta.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"index": "Overview",
3+
"subagents": "Subagents",
4+
"skills": "Skills",
5+
"hooks": "Hooks",
6+
"tools": "Tools",
7+
"timeline": "Timeline"
8+
}

0 commit comments

Comments
 (0)