-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding openapi generation * added optional responses * added path params * added request body * added full openapi file * fixed crud bug * fixed small bugs * added generate-docs script * added parameter example * create docs from handler * improved parse openapi interface * removed unused * added endpoint metadata * added current user handler * migrated old docs to fern * 🌿 api set-up (#75) Co-authored-by: Catherine Deskur <[email protected]> * added sdk docs * updated tabs * improved styling * added header links * added tags to docs * added focus to docs * added focus to team docs * improved docs wording * added discord link * updated generate-keys docs * fixed merge error * added yaml package * added github actions * fixed doc gen bug * added docs lint check * added doc watch changes * updated github actions * fixed action file * updated publish docs workflow * added overview page * fixed action bug --------- Co-authored-by: fern <[email protected]> Co-authored-by: Catherine Deskur <[email protected]>
- Loading branch information
1 parent
856cfe1
commit 019738a
Showing
64 changed files
with
1,188 additions
and
635 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Preview Docs | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
env: | ||
NEXT_PUBLIC_STACK_URL: http://localhost:8101 | ||
NEXT_PUBLIC_STACK_PROJECT_ID: internal | ||
NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY: internal-project-publishable-client-key | ||
STACK_SECRET_SERVER_KEY: internal-project-secret-server-key | ||
SERVER_SECRET: 23-wuNpik0gIW4mruTz25rbIvhuuvZFrLOLtL7J4tyo | ||
|
||
EMAIL_HOST: 0.0.0.0 | ||
EMAIL_PORT: 2500 | ||
EMAIL_USERNAME: test | ||
EMAIL_PASSWORD: none | ||
EMAIL_SENDER: [email protected] | ||
|
||
DATABASE_CONNECTION_STRING: postgres://postgres:password@localhost:5432/stackframe | ||
DIRECT_DATABASE_CONNECTION_STRING: postgres://postgres:password@localhost:5432/stackframe | ||
|
||
permissions: write-all | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v3 | ||
with: | ||
version: 9.1.2 | ||
|
||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Build | ||
run: pnpm build | ||
|
||
- name: Generate docs | ||
run: pnpm generate-docs | ||
|
||
- name: Install Fern | ||
run: npm install -g fern-api | ||
|
||
- name: Check API is valid | ||
run: fern check | ||
working-directory: ./docs | ||
|
||
- name: Generate preview URL | ||
id: generate-docs | ||
env: | ||
FERN_TOKEN: ${{ secrets.FERN_TOKEN }} | ||
run: | | ||
OUTPUT=$(fern generate --docs --preview 2>&1) || true | ||
echo "$OUTPUT" | ||
URL=$(echo "$OUTPUT" | grep -oP 'Published docs to \K.*(?= \()') | ||
echo "Preview URL: $URL" | ||
echo "🌿 Preview your docs: $URL" > preview_url.txt | ||
working-directory: ./docs | ||
|
||
- name: Comment URL in PR | ||
uses: thollander/[email protected] | ||
with: | ||
filePath: docs/preview_url.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Publish Docs | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
env: | ||
NEXT_PUBLIC_STACK_URL: http://localhost:8101 | ||
NEXT_PUBLIC_STACK_PROJECT_ID: internal | ||
NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY: internal-project-publishable-client-key | ||
STACK_SECRET_SERVER_KEY: internal-project-secret-server-key | ||
SERVER_SECRET: 23-wuNpik0gIW4mruTz25rbIvhuuvZFrLOLtL7J4tyo | ||
|
||
EMAIL_HOST: 0.0.0.0 | ||
EMAIL_PORT: 2500 | ||
EMAIL_USERNAME: test | ||
EMAIL_PASSWORD: none | ||
EMAIL_SENDER: [email protected] | ||
|
||
DATABASE_CONNECTION_STRING: postgres://postgres:password@localhost:5432/stackframe | ||
DIRECT_DATABASE_CONNECTION_STRING: postgres://postgres:password@localhost:5432/stackframe | ||
|
||
permissions: write-all | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v3 | ||
with: | ||
version: 9.1.2 | ||
|
||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Build | ||
run: pnpm build | ||
|
||
- name: Generate docs | ||
run: pnpm generate-docs | ||
|
||
- name: Install Fern | ||
run: npm install -g fern-api | ||
|
||
- name: Publish Docs | ||
env: | ||
FERN_TOKEN: ${{ secrets.FERN_TOKEN }} | ||
run: fern generate --docs --log-level debug | ||
working-directory: ./docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.