Skip to content

Commit

Permalink
feat: initial nextra docs site
Browse files Browse the repository at this point in the history
  • Loading branch information
mateobelanger committed Nov 22, 2024
1 parent 0c72ef1 commit 7d2826f
Show file tree
Hide file tree
Showing 108 changed files with 7,920 additions and 3 deletions.
Binary file added .github/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Deploy

on:
push:
branches: [main]

jobs:
github_pages_deploy:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
- uses: actions/checkout@v3
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 22.x
- name: Install dependencies
run: |
yarn install
yarn export
- name: Deploy
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
yarn deploy -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**/node_modules/
**/dist/
**/target/
**/build/
**/docs/
**/public/
**/cache/
1 change: 1 addition & 0 deletions .next/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"type": "commonjs"}
1 change: 1 addition & 0 deletions .next/prerender-manifest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .next/routes-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"version":3,"pages404":true,"caseSensitive":false,"basePath":"","redirects":[{"source":"/:path+/","destination":"/:path+","internal":true,"statusCode":308,"regex":"^(?:/((?:[^/]+?)(?:/(?:[^/]+?))*))/$"}],"headers":[],"dynamicRoutes":[],"staticRoutes":[{"page":"/","regex":"^/(?:/)?$","routeKeys":{},"namedRegex":"^/(?:/)?$"},{"page":"/_meta","regex":"^/_meta(?:/)?$","routeKeys":{},"namedRegex":"^/_meta(?:/)?$"},{"page":"/about","regex":"^/about(?:/)?$","routeKeys":{},"namedRegex":"^/about(?:/)?$"},{"page":"/docs/Architecture","regex":"^/docs/Architecture(?:/)?$","routeKeys":{},"namedRegex":"^/docs/Architecture(?:/)?$"},{"page":"/docs/quickstart","regex":"^/docs/quickstart(?:/)?$","routeKeys":{},"namedRegex":"^/docs/quickstart(?:/)?$"},{"page":"/guides","regex":"^/guides(?:/)?$","routeKeys":{},"namedRegex":"^/guides(?:/)?$"},{"page":"/guides/_meta","regex":"^/guides/_meta(?:/)?$","routeKeys":{},"namedRegex":"^/guides/_meta(?:/)?$"},{"page":"/guides/discord_bot","regex":"^/guides/discord_bot(?:/)?$","routeKeys":{},"namedRegex":"^/guides/discord_bot(?:/)?$"},{"page":"/guides/travel_agent","regex":"^/guides/travel_agent(?:/)?$","routeKeys":{},"namedRegex":"^/guides/travel_agent(?:/)?$"}],"dataRoutes":[],"rsc":{"header":"RSC","varyHeader":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Next-Url","prefetchHeader":"Next-Router-Prefetch","contentTypeHeader":"text/x-component"},"rewrites":[{"source":"/:path*/_meta","destination":"/404","regex":"^(?:/((?:[^/]+?)(?:/(?:[^/]+?))*))?/_meta(?:/)?$"}]}
36 changes: 36 additions & 0 deletions .next/server/chunks/1308.js

Large diffs are not rendered by default.

215 changes: 215 additions & 0 deletions .next/server/chunks/1469.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .next/server/chunks/192.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .next/server/chunks/2100.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7d2826f

Please sign in to comment.