Skip to content

Commit bf64125

Browse files
authored
Merge pull request #80 from joaoc-dev/dev
merge dev
2 parents a3dc01d + 0a4c7a6 commit bf64125

543 files changed

Lines changed: 7384 additions & 2065 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.

.coderabbit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ reviews:
1111
related_issues: true
1212
path_instructions:
1313
- path: 'blueledger-webapp/app/**/*.{ts,tsx}'
14-
instructions: 'Review the Typescript and React code according to conventions and best practices.'
14+
instructions: Review the Typescript and React code according to conventions and best practices.
1515
- path: 'blueledger-webapp/app/api/**'
16-
instructions: 'Verify API routes handle errors gracefully and follow RESTful conventions.'
16+
instructions: Verify API routes handle errors gracefully and follow RESTful conventions.
1717
- path: 'blueledger-webapp/app/**/*.test.{ts,tsx}'
1818
instructions: 'Ensure that test files effectively cover various scenarios and edge cases, and follow testing conventions.'
1919
auto_review:
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,7 @@ NEXT_PUBLIC_POSTHOG_HOST=
3333
RESEND_API_KEY=
3434

3535
UPSTASH_REDIS_REST_URL=
36-
UPSTASH_REDIS_REST_TOKEN=
36+
UPSTASH_REDIS_REST_TOKEN=
37+
38+
GROQ_API_KEY=
39+
GOOGLE_GENERATIVE_AI_API_KEY=

.github/dependabot.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
updates:
33
- package-ecosystem: npm
4-
directory: blueledger-webapp
4+
directory: /
55
schedule:
66
interval: weekly
77
open-pull-requests-limit: 1
@@ -17,7 +17,7 @@ updates:
1717
update-types: ['version-update:semver-major']
1818

1919
- package-ecosystem: github-actions
20-
directory: blueledger-webapp
20+
directory: /
2121
schedule:
2222
interval: weekly
2323
open-pull-requests-limit: 1

.github/workflows/ci.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ on: [push]
33
jobs:
44
build:
55
runs-on: ubuntu-latest
6-
defaults:
7-
run:
8-
working-directory: blueledger-webapp
96

107
steps:
118
- name: Checkout
@@ -43,4 +40,4 @@ jobs:
4340
if: ${{ !cancelled() }}
4441
uses: codecov/test-results-action@v1
4542
with:
46-
token: ${{ secrets.CODECOV_TOKEN }}
43+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/release.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ on:
88
jobs:
99
release:
1010
runs-on: ubuntu-latest
11-
defaults:
12-
run:
13-
working-directory: blueledger-webapp
1411

1512
strategy:
1613
matrix:
@@ -30,15 +27,15 @@ jobs:
3027
- name: Install pnpm
3128
uses: pnpm/action-setup@v4
3229
with:
33-
package_json_file: blueledger-webapp/package.json
30+
package_json_file: package.json
3431
run_install: false
3532

3633
- name: Setup Node.js
37-
uses: actions/setup-node@v4
34+
uses: actions/setup-node@v5
3835
with:
3936
node-version: ${{ matrix.node-version }}
40-
cache: 'pnpm'
41-
cache-dependency-path: blueledger-webapp/pnpm-lock.yaml
37+
cache: pnpm
38+
cache-dependency-path: pnpm-lock.yaml
4239

4340
- name: Install dependencies
4441
run: pnpm install
File renamed without changes.

README.md

Lines changed: 59 additions & 14 deletions

0 commit comments

Comments
 (0)