Skip to content

Commit 344b9da

Browse files
committed
chore: add db migration
2 parents 4e92c08 + 36a4ca3 commit 344b9da

95 files changed

Lines changed: 20070 additions & 11910 deletions

File tree

Some content is hidden

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

.github/workflows/docusaurus.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- "dev"
7+
- "main"
8+
9+
jobs:
10+
build:
11+
name: Build Docusaurus
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: 20
20+
21+
- name: Install Dependencies
22+
working-directory: ./docs
23+
run: |
24+
echo "installing pnpm"
25+
npm install -g pnpm
26+
echo "installing deps for packages"
27+
pnpm i
28+
29+
- name: Build website
30+
working-directory: ./docs
31+
run: pnpm build
32+
33+
- name: Upload Build Artifact
34+
uses: actions/upload-pages-artifact@v3
35+
with:
36+
path: docs/build
37+
38+
deploy:
39+
name: Deploy to GitHub Pages
40+
needs: build
41+
42+
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
43+
permissions:
44+
pages: write # to deploy to Pages
45+
id-token: write # to verify the deployment originates from an appropriate source
46+
47+
# Deploy to the github-pages environment
48+
environment:
49+
name: github-pages
50+
url: ${{ steps.deployment.outputs.page_url }}
51+
52+
runs-on: ubuntu-latest
53+
steps:
54+
- name: Deploy to GitHub Pages
55+
id: deployment
56+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ node_modules
55
.pnp
66
.pnp.js
77

8+
.docusaurus
9+
810
.env.development
911

1012
# Local env files

docs/.docusaurus/DONT-EDIT-THIS-FOLDER

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

0 commit comments

Comments
 (0)