-
Notifications
You must be signed in to change notification settings - Fork 3
Support self-hosted Fizzy and current Codex CLI #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
aa6f819
9c6516f
29117bc
cbf693f
f641c5c
bc04a28
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| name: Build package asset | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - self-hosted | ||
| - main | ||
| pull_request: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Setup Node | ||
| uses: actions/setup-node@v6 | ||
| with: | ||
| node-version: 22 | ||
| cache: npm | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
||
| - name: Test | ||
| run: npm test | ||
|
|
||
| - name: Typecheck | ||
| run: npm run typecheck | ||
|
|
||
| - name: Build | ||
| run: npm run build | ||
|
|
||
| - name: Pack npm tarball | ||
| run: npm pack | ||
|
|
||
| - name: Upload package artifact | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: fizzy-popper-package | ||
| path: fizzy-popper-*.tgz | ||
| if-no-files-found: error | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,11 +1,16 @@ | ||||||
| import * as p from "@clack/prompts" | ||||||
| import chalk from "chalk" | ||||||
| import { execFileSync } from "node:child_process" | ||||||
| import { saveConfig } from "./config.js" | ||||||
| import { FizzyClient, type FizzyBoard } from "./fizzy.js" | ||||||
| import { detectBackends } from "./agent.js" | ||||||
|
|
||||||
| const DEFAULT_FIZZY_API_URL = "https://app.fizzy.do" | ||||||
|
||||||
| const DEFAULT_FIZZY_API_URL = "https://app.fizzy.do" | |
| export const DEFAULT_FIZZY_API_URL = "https://app.fizzy.do" |
Uh oh!
There was an error while loading. Please reload this page.