Skip to content

Commit

Permalink
inital commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rifting committed Nov 19, 2024
1 parent b7a319a commit 29c35bf
Show file tree
Hide file tree
Showing 98 changed files with 6,297 additions and 17,751 deletions.
32 changes: 15 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
# Dependencies
/node_modules
# build output
dist/
# generated types
.astro/

# Production
/build

# Generated files
.docusaurus
.cache-loader

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
# dependencies
node_modules/

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

yarn.lock

# environment variables
.env
.env.production

# macOS-specific files
.DS_Store
2 changes: 0 additions & 2 deletions .prettierignore

This file was deleted.

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"
}
]
}
1 change: 0 additions & 1 deletion .yarnrc.yml

This file was deleted.

83 changes: 0 additions & 83 deletions CONTRIBUTING.md

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -658,4 +658,4 @@ specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
<https://www.gnu.org/licenses/>.
<https://www.gnu.org/licenses/>.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,21 @@
The official SDK documentation site for TitaniumNetwork. Here we provide advanced web proxy services through the progression of web proxy technologies.
This composes from advanced URL rewriting proxies, webOS projects, web-based emulation built from libretro, kajigs (a repository of device/OS exploits) and also web browser experimentations with service-workers. As a result a wide variety of sites are supported, speed is prioritized and resource consumption has also been significantly optimized compared to previous technologies.

### Built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
### Built using [Starlight](https://starlight.astro.build/), a modern static documentation generator.

## Installation

Requirements are Yarn and Node.js (v16+).
Requirements are Node.js (v20+).

```
git clone https://github.com/titaniumnetwork-dev/Oxide-Docs.git
cd Oxide-Docs
yarn
npm i
yarn start # developmental server
yarn build # build
yarn serve # production build
npm run dev # developmental server
npm run build # build static files
```

## Contributing

If you wish to contribute please check out the Contributions section or commit to the GitHub!
If you wish to contribute please check out the Contributions section or commit to the GitHub!
49 changes: 49 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
// @ts-check
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";

// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: "Titanium Network",
favicon: "/favicon.png",
social: {
github: "https://github.com/titaniumnetwork-dev/Oxide-Docs",
discord: "https://discord.gg/unblock",
},
sidebar: [
{
label: "Guides",
autogenerate: { directory: "guides" },
},
{
label: "Services",
autogenerate: { directory: "services" },
},
{
label: "Proxies",
autogenerate: { directory: "proxies" },
},
{
label: "Technologies",
autogenerate: { directory: "technologies" },
},
{
label: "Transports",
autogenerate: { directory: "transports" },
},
{
label: "Kajigs",
autogenerate: { directory: "kajigs" },
},
],
customCss: [
// Relative path to your custom CSS file
"./src/styles/custom.css",
"@fontsource/raleway/400.css",
"@fontsource/raleway/600.css",
],
}),
],
});
3 changes: 0 additions & 3 deletions babel.config.js

This file was deleted.

1 change: 0 additions & 1 deletion debug.log

This file was deleted.

8 changes: 0 additions & 8 deletions docs/guides/_category_.json

This file was deleted.

Loading

0 comments on commit 29c35bf

Please sign in to comment.