Skip to content

Commit d967bcd

Browse files
committed
Merge branch 'main'
2 parents 733339a + ca292ee commit d967bcd

471 files changed

Lines changed: 83275 additions & 4440 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.

.dockerignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ postgres/
1111
*.yml
1212
*.md
1313
LICENSE
14+
.github/
15+
.hooks/
16+
.vscode/
17+
.zed/

.github/workflows/build.yml

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,9 @@ jobs:
2929
- name: Setup pnpm
3030
uses: pnpm/action-setup@v5
3131
with:
32-
version: 10
32+
version: 11
3333
run_install: false
3434

35-
- name: Get pnpm store directory
36-
id: pnpm-cache
37-
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
38-
39-
- name: Setup pnpm cache
40-
uses: actions/cache@v5
41-
with:
42-
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
43-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
44-
restore-keys: |
45-
${{ runner.os }}-pnpm-store-
46-
4735
- name: Install frontend dependencies
4836
run: |
4937
cd frontend
@@ -209,6 +197,7 @@ jobs:
209197
uses: docker/build-push-action@v7
210198
with:
211199
context: .
200+
file: ./docker/Dockerfile
212201
platforms: linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le
213202
push: true
214203
tags: ghcr.io/${{ github.repository }}:nightly
@@ -219,7 +208,7 @@ jobs:
219208
uses: docker/build-push-action@v7
220209
with:
221210
context: .
222-
file: Dockerfile.aio
211+
file: ./docker/Dockerfile.aio
223212
platforms: linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le
224213
push: true
225214
tags: ghcr.io/${{ github.repository }}:nightly-aio
@@ -261,7 +250,7 @@ jobs:
261250
uses: docker/build-push-action@v7
262251
with:
263252
context: .
264-
file: Dockerfile.heavy
253+
file: ./docker/Dockerfile.heavy
265254
platforms: ${{ matrix.platform }}
266255
push: true
267256
tags: ghcr.io/${{ github.repository }}:nightly-heavy-${{ matrix.tag_suffix }}
@@ -272,7 +261,7 @@ jobs:
272261
uses: docker/build-push-action@v7
273262
with:
274263
context: .
275-
file: Dockerfile.heavy.aio
264+
file: ./docker/Dockerfile.heavy.aio
276265
platforms: ${{ matrix.platform }}
277266
push: true
278267
tags: ghcr.io/${{ github.repository }}:nightly-heavy-aio-${{ matrix.tag_suffix }}

.github/workflows/docs.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,9 @@ jobs:
5757
- name: Setup pnpm
5858
uses: pnpm/action-setup@v5
5959
with:
60-
version: 10
60+
version: 11
6161
run_install: false
6262

63-
- name: Get pnpm store directory
64-
id: pnpm-cache
65-
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
66-
67-
- name: Setup pnpm cache
68-
uses: actions/cache@v5
69-
with:
70-
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
71-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
72-
restore-keys: |
73-
${{ runner.os }}-pnpm-store-
74-
7563
- name: Install frontend dependencies
7664
run: |
7765
cd frontend

.github/workflows/lint.yml

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,9 @@ jobs:
2525
- name: Setup pnpm
2626
uses: pnpm/action-setup@v5
2727
with:
28-
version: 10
28+
version: 11
2929
run_install: false
3030

31-
- name: Get pnpm store directory
32-
id: pnpm-cache
33-
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
34-
35-
- name: Setup pnpm cache
36-
uses: actions/cache@v5
37-
with:
38-
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
39-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
40-
restore-keys: |
41-
${{ runner.os }}-pnpm-store-
42-
4331
- name: Install frontend dependencies
4432
run: |
4533
cd frontend
@@ -67,21 +55,9 @@ jobs:
6755
- name: Setup pnpm
6856
uses: pnpm/action-setup@v5
6957
with:
70-
version: 10
58+
version: 11
7159
run_install: false
7260

73-
- name: Get pnpm store directory
74-
id: pnpm-cache
75-
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
76-
77-
- name: Setup pnpm cache
78-
uses: actions/cache@v5
79-
with:
80-
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
81-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
82-
restore-keys: |
83-
${{ runner.os }}-pnpm-store-
84-
8561
- name: Install frontend dependencies
8662
run: |
8763
cd frontend

.github/workflows/release.yml

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,9 @@ jobs:
2929
- name: Setup pnpm
3030
uses: pnpm/action-setup@v5
3131
with:
32-
version: 10
32+
version: 11
3333
run_install: false
3434

35-
- name: Get pnpm store directory
36-
id: pnpm-cache
37-
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
38-
39-
- name: Setup pnpm cache
40-
uses: actions/cache@v5
41-
with:
42-
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
43-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
44-
restore-keys: |
45-
${{ runner.os }}-pnpm-store-
46-
4735
- name: Install frontend dependencies
4836
run: |
4937
cd frontend
@@ -265,6 +253,7 @@ jobs:
265253
uses: docker/build-push-action@v7
266254
with:
267255
context: .
256+
file: ./docker/Dockerfile
268257
platforms: linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le
269258
push: true
270259
tags: ${{ env.DOCKER_TAGS }}
@@ -275,7 +264,7 @@ jobs:
275264
uses: docker/build-push-action@v7
276265
with:
277266
context: .
278-
file: Dockerfile.aio
267+
file: ./docker/Dockerfile.aio
279268
platforms: linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le
280269
push: true
281270
tags: ${{ env.AIO_TAGS }}
@@ -317,7 +306,7 @@ jobs:
317306
uses: docker/build-push-action@v7
318307
with:
319308
context: .
320-
file: Dockerfile.heavy
309+
file: ./docker/Dockerfile.heavy
321310
platforms: ${{ matrix.platform }}
322311
push: true
323312
tags: ghcr.io/${{ github.repository }}:heavy-build-${{ matrix.tag_suffix }}
@@ -328,7 +317,7 @@ jobs:
328317
uses: docker/build-push-action@v7
329318
with:
330319
context: .
331-
file: Dockerfile.heavy.aio
320+
file: ./docker/Dockerfile.heavy.aio
332321
platforms: ${{ matrix.platform }}
333322
push: true
334323
tags: ghcr.io/${{ github.repository }}:heavy-aio-build-${{ matrix.tag_suffix }}

.sqlx/query-20f1176493f134d42aa280cba1cb0bb2c8a6bfb4687956617bcde43f024c4cbe.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

.sqlx/query-42660713d54e127ff3f5bec787522966a247f2198d48c5339f6dd62aff54fe7a.json

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-638a6d333fafcc7586ab596b5de9209c30db4a23f98ca19518338b1c52714bfc.json

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-66589683f0abd49b9881e6f693a130e8f26e7aef526d151105f1fc756af8a504.json

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-7425e46e30538fc586612e9f8ab8540fd7f5755eb720def57caaf9e6866cef44.json

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)