Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b312273
Cancels downloading when reaching 10 MB
simonbs Oct 24, 2024
334b347
Timeout downloading after 30 seconds
simonbs Oct 24, 2024
62f0912
Removes debug log
simonbs Oct 24, 2024
8845001
Makes max file size and timeout configurable
simonbs Oct 24, 2024
d6dbfb3
Fixes blob not returned correctly
simonbs Oct 24, 2024
f1b540f
Removes error logging
simonbs Oct 24, 2024
f1f9296
Fixes linting errors
simonbs Oct 24, 2024
0c00f35
Merge pull request #416 from shapehq/bugfix/cancel-downloading-large-…
simonbs Oct 25, 2024
287662e
Bump the mui group with 2 updates
dependabot[bot] Oct 28, 2024
075acc8
Merge pull request #418 from shapehq/dependabot/npm_and_yarn/mui-c3c5…
ulrikandersen Oct 28, 2024
c1a5b4d
Bump pg and @types/pg
dependabot[bot] Oct 28, 2024
658ffb4
Merge pull request #420 from shapehq/dependabot/npm_and_yarn/multi-8d…
ulrikandersen Oct 28, 2024
2f78370
Bump @fontsource/poppins from 5.0.14 to 5.1.0
dependabot[bot] Oct 28, 2024
763ca52
Merge pull request #421 from shapehq/dependabot/npm_and_yarn/fontsour…
ulrikandersen Oct 28, 2024
84a462d
Bump the typescript-eslint group with 2 updates
dependabot[bot] Oct 28, 2024
1627a57
Merge pull request #419 from shapehq/dependabot/npm_and_yarn/typescri…
ulrikandersen Oct 28, 2024
26c7ffd
Bump @types/react from 18.3.11 to 18.3.12
dependabot[bot] Oct 28, 2024
30d3a0b
Make sure file proxy endpoint only serves JSON or YAML
ulrikandersen Oct 25, 2024
d30afb0
Merge pull request #417 from shapehq/fix/make-sure-proxy-only-serves-…
ulrikandersen Oct 28, 2024
0e28321
Merge branch 'develop' into dependabot/npm_and_yarn/types/react-18.3.12
simonbs Oct 28, 2024
50e9d9b
Update run-unit-tests.yml
simonbs Oct 28, 2024
ef3bcc2
Update build.yml
simonbs Oct 28, 2024
e9212d4
Merge pull request #422 from shapehq/dependabot/npm_and_yarn/types/re…
ulrikandersen Oct 28, 2024
ebb4a9e
Merge branch 'develop' into enhancement/setup-node-v4
ulrikandersen Oct 28, 2024
5c2d285
Merge pull request #424 from shapehq/enhancement/setup-node-v4
simonbs Oct 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ POSTGRESQL_DB=framna-docs
REPOSITORY_NAME_SUFFIX=-openapi
HIDDEN_REPOSITORIES=
NEW_PROJECT_TEMPLATE_REPOSITORY=shapehq/starter-openapi
PROXY_API_MAXIMUM_FILE_SIZE_IN_MEGABYTES = 10
PROXY_API_TIMEOUT_IN_SECONDS = 30
GITHUB_WEBHOOK_SECRET=preshared secret also put in app configuration in GitHub
GITHUB_WEBHOK_REPOSITORY_ALLOWLIST=
GITHUB_WEBHOK_REPOSITORY_DISALLOWLIST=
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup Environment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
Expand Down
Loading