Skip to content

Commit a343bf1

Browse files
committed
initial commit
1 parent 0471d66 commit a343bf1

52 files changed

Lines changed: 19761 additions & 0 deletions

Some content is hidden

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

.github/workflows/deploy.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: write
11+
12+
jobs:
13+
deploy:
14+
name: Deploy to GitHub Pages
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: 20
22+
cache: npm
23+
cache-dependency-path: website/package-lock.json
24+
25+
- name: Install dependencies
26+
working-directory: website
27+
run: npm ci
28+
29+
- name: Build website
30+
working-directory: website
31+
run: npm run build
32+
33+
- name: Deploy to GitHub Pages
34+
uses: peaceiris/actions-gh-pages@v4
35+
with:
36+
github_token: ${{ secrets.GITHUB_TOKEN }}
37+
publish_dir: website/build
38+
cname: igeo7.org

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,20 @@ cython_debug/
205205
marimo/_static/
206206
marimo/_lsp/
207207
__marimo__/
208+
209+
# Node / JavaScript
210+
node_modules/
211+
npm-debug.log*
212+
yarn-debug.log*
213+
yarn-error.log*
214+
.pnpm-debug.log*
215+
.npm
216+
.yarn/cache
217+
.yarn/unplugged
218+
.yarn/build-state.yml
219+
.pnp.*
220+
221+
# Docusaurus build output & cache
222+
website/build/
223+
website/.docusaurus/
224+
.docusaurus/

cpidigits.png

37.5 KB
Loading

isea7h_refinement.png

52.6 KB
Loading

refinement_ratios.png

37.4 KB
Loading

website/docs/api/hierarchy.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
id: hierarchy
3+
title: Hierarchy Functions
4+
---
5+
6+
# Hierarchy Functions
7+
8+
:::note Coming soon
9+
This page is under construction.
10+
:::

website/docs/api/indexing.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
id: indexing
3+
title: Indexing Functions
4+
---
5+
6+
# Indexing Functions
7+
8+
:::note Coming soon
9+
This page is under construction.
10+
:::

website/docs/api/inspection.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
id: inspection
3+
title: Inspection Functions
4+
---
5+
6+
# Inspection Functions
7+
8+
:::note Coming soon
9+
This page is under construction.
10+
:::

website/docs/api/misc.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
id: misc
3+
title: Miscellaneous Functions
4+
---
5+
6+
# Miscellaneous Functions
7+
8+
:::note Coming soon
9+
This page is under construction.
10+
:::

website/docs/api/overview.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
id: overview
3+
title: API Overview
4+
---
5+
6+
# API Overview
7+
8+
:::note Coming soon
9+
This page is under construction.
10+
:::

0 commit comments

Comments
 (0)