Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM oven/bun:1.2.22-alpine
FROM oven/bun:1.3.14-alpine

# Install necessary packages for development
RUN apk add --no-cache \
Expand Down Expand Up @@ -44,4 +44,4 @@ WORKDIR /workspace
# Expose the ports we're interested in
EXPOSE 3000
EXPOSE 3001
EXPOSE 3002
EXPOSE 3002
8 changes: 2 additions & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@
]
}
},
"forwardPorts": [
3000,
3002,
5432
],
"forwardPorts": [3000, 3002, 5432],
"postCreateCommand": "bash -c 'bash .devcontainer/post-create.sh || true'",
"remoteUser": "bun"
}
}
2 changes: 1 addition & 1 deletion .github/workflows_legacy/docs-embeddings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.22
bun-version: 1.3.14

- name: Setup Node
uses: actions/setup-node@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows_legacy/i18n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.22
bun-version: 1.3.14

- name: Run Lingo.dev translations
env:
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.22
bun-version: 1.3.14

- name: Install dependencies
run: |
Expand Down Expand Up @@ -155,4 +155,4 @@ jobs:
echo "- **🇯🇵 Japanese**: $ja_count/$en_count files ($ja_percentage%)" >> $GITHUB_STEP_SUMMARY
echo "- **🇩🇪 German**: $de_count/$en_count files ($de_percentage%)" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "🔄 **Auto-translation PR**: Check for new pull request with updated translations" >> $GITHUB_STEP_SUMMARY
echo "🔄 **Auto-translation PR**: Check for new pull request with updated translations" >> $GITHUB_STEP_SUMMARY
4 changes: 2 additions & 2 deletions .github/workflows_legacy/migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.22
bun-version: 1.3.14

- name: Install dependencies
run: bun install
Expand All @@ -25,4 +25,4 @@ jobs:
working-directory: ./packages/db
env:
DATABASE_URL: ${{ github.ref == 'refs/heads/main' && secrets.DATABASE_URL || secrets.STAGING_DATABASE_URL }}
run: bunx drizzle-kit migrate --config=./drizzle.config.ts
run: bunx drizzle-kit migrate --config=./drizzle.config.ts
4 changes: 2 additions & 2 deletions .github/workflows_legacy/publish-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.22
bun-version: 1.3.14

- name: Setup Node.js for npm publishing
uses: actions/setup-node@v4
Expand Down Expand Up @@ -55,4 +55,4 @@ jobs:

- name: Log skipped publish
if: steps.version_check.outputs.exists == 'true'
run: echo "Skipped publishing because version ${{ steps.package_version.outputs.version }} already exists on npm"
run: echo "Skipped publishing because version ${{ steps.package_version.outputs.version }} already exists on npm"
4 changes: 2 additions & 2 deletions .github/workflows_legacy/publish-ts-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.22
bun-version: 1.3.14

- name: Setup Node.js for npm publishing
uses: actions/setup-node@v4
Expand Down Expand Up @@ -81,4 +81,4 @@ jobs:
### Documentation
See the [README](https://github.com/TradingGoose/TradingGoose-Studio/tree/main/packages/ts-sdk) or the [docs](https://docs.tradinggoose.ai/sdks/typescript) for more information.
draft: false
prerelease: false
prerelease: false
2 changes: 1 addition & 1 deletion .github/workflows_legacy/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.22
bun-version: 1.3.14

- name: Setup Node
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows_legacy/trigger-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.22
bun-version: 1.3.14

- name: Install dependencies
run: bun install
Expand Down
Loading
Loading