Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
48ae938
feat: Add A4b
Aviortheking Oct 3, 2025
20f153a
pouet
Aviortheking Oct 21, 2025
d9faee4
chore: update
Aviortheking Oct 21, 2025
fe3e3ba
pouet
Aviortheking Oct 22, 2025
82640ca
a
Aviortheking Oct 24, 2025
40b76bb
clean
Aviortheking Oct 24, 2025
7d129a6
clean bis
Aviortheking Oct 24, 2025
4b49b3b
clean ter
Aviortheking Oct 24, 2025
173e831
feat: server works, need testing & validation
Aviortheking Sep 28, 2025
fcca03b
feat: final tests are noe OK !
Aviortheking Oct 1, 2025
9488cbd
fix: invalid series crashing compiler
Aviortheking Jan 7, 2026
d199be3
Merge remote-tracking branch 'origin/chore/tests' into feat/new-server
Aviortheking Jan 7, 2026
a42e55c
fix: remove changes from merge
Aviortheking Jan 7, 2026
e193b6b
fix: filename change
Aviortheking Jan 7, 2026
84d4626
chore: disable win test currently
Aviortheking Jan 7, 2026
3f83e76
chore: remove old compiler
Aviortheking Jan 7, 2026
410f9c3
fix: missing deps
Aviortheking Jan 7, 2026
53c76aa
fix: missing deps
Aviortheking Jan 7, 2026
afb54fa
Merge branch 'master' into feat/new-server
Aviortheking Feb 12, 2026
3c78a86
f*cking finally
Aviortheking Feb 12, 2026
7ba884f
chore: enable back tests
Aviortheking Feb 12, 2026
928341a
woohps
Aviortheking Feb 12, 2026
ca5bd48
fix: windows compilation
Aviortheking Feb 12, 2026
92a183a
fix: typing
Aviortheking Feb 12, 2026
1355e74
chore: remove timeout
Aviortheking Feb 12, 2026
0720058
chore: add ok message to ping
Aviortheking Feb 12, 2026
d79a4a5
chore: add back status page
Aviortheking Apr 22, 2026
ef50893
Merge remote-tracking branch 'origin/master' into feat/new-server
Aviortheking Apr 22, 2026
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
15 changes: 15 additions & 0 deletions .bruno/cards/Get All cards.bru
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
meta {
name: Get All cards
type: http
seq: 6
}

get {
url: {{BASE_URL}}/v2/en/cards
body: none
auth: none
}

assert {
res.status: eq 200
}
1 change: 0 additions & 1 deletion .bruno/endpoints/v2/lang/random/Random Set.bru
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ params:query {
assert {
res.status: eq 200
res.body.name: contains Sword
res.responseTime: lte 30
}
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Build Docker image

on:
push:
branches:
branches:
- master
pull_request:
branches:
branches:
- "**"

env:
Expand Down Expand Up @@ -68,9 +68,7 @@ jobs:
- name: Pre build server
run: |
bun install --frozen-lockfile
cd server
bun install --frozen-lockfile
bun run compile
bun scripts/compiler/index.ts
rm -rf node_modules
cd ..
rm -rf node_modules
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ name: Test the Data

on:
push:
branches:
branches:
- master
pull_request_target:
branches:
branches:
- "**"
pull_request:
branches:
- "**"

permissions: {}
Expand All @@ -31,14 +34,13 @@ jobs:
run: |
bun install -g @usebruno/cli
bun install --frozen-lockfile
cd server
bun install --frozen-lockfile
bun run compile
bun scripts/compiler/index.ts

- name: Validate the data & the server
run: |
bun run validate
cd server
bun install --frozen-lockfile
bun run --bun validate

- name: Validate some requests
Expand Down
10 changes: 3 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,16 @@ ADD --chown=bun:bun package.json bun.lock ./
ADD --chown=bun:bun server/package.json server/bun.lock ./server/

# install dependencies
RUN bun install --frozen-lockfile && \
cd server && \
bun install --frozen-lockfile
RUN bun install --frozen-lockfile

# Add project files
ADD --chown=bun:bun . .

# build
RUN cd server && \
bun run compile
RUN bun scripts/compiler/all.ts

# remove dev dependencies (bun do not yet support "prune")
# Install productions packages
RUN cd server && \
rm -rf node_modules && \
bun install --frozen-install --production

# go to another VM
Expand Down
49 changes: 49 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions data/Mega Evolution/MEP Black Star Promos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const set: Set = {
de: "MEP Black Star Promos",
en: "MEP Black Star Promos",
es: "MEP Black Star Promos",
"es-mx": "MEP Black Star Promos",
fr: "MEP Black Star Promos",
it: "MEP Black Star Promos",
pt: "MEP Black Star Promos"
Expand Down
1 change: 1 addition & 0 deletions data/Scarlet & Violet/Black Bolt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const set: Set = {
de: "Schwarze Blitze",
en: "Black Bolt",
es: "Fulgor Negro",
"es-mx": "Fulgor Negro",
fr: "Foudre Noire",
it: "Luce Nera",
pt: "Raio Preto"
Expand Down
1 change: 1 addition & 0 deletions data/Scarlet & Violet/White Flare.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const set: Set = {
de: "Weiße Flammen",
en: "White Flare",
es: "Llama Blanca",
"es-mx": "Llama Blanca"
fr: "Flamme Blanche",
it: "Fuoco Bianco",
pt: "Fogo Branco"
Expand Down
Loading
Loading