Skip to content

Commit 87bd542

Browse files
authored
Merge pull request #19 from mammouth-ai/no-minimax-m3-in-mammouth-code-n2697
No Minimax-M3 in Mammouth Code
2 parents 711c080 + fd1dcff commit 87bd542

3,583 files changed

Lines changed: 557144 additions & 208237 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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.git
2+
.opencode
3+
.sst
4+
.turbo
5+
.wrangler
6+
node_modules
7+
**/node_modules
8+
**/.output
9+
**/dist
10+
**/.turbo
11+
**/.vite
12+
**/coverage

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
packages/core/migration/**/snapshot.json linguist-generated
2+
packages/core/src/database/migration.gen.ts linguist-generated

.github/CODEOWNERS

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# web + desktop packages
2-
packages/app/ @adamdotdevin
3-
packages/tauri/ @adamdotdevin
4-
packages/desktop/src-tauri/ @brendonovich
5-
packages/desktop/ @adamdotdevin
2+
packages/app/ @Hona @Brendonovich
3+
packages/desktop/ @Hona @Brendonovich

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Bug report
2-
description: Report an issue that should be fixed
3-
labels: ["bug"]
2+
description: Report an issue that should be fixed (avoid pasting giant AI generated summaries or your issue may be closed/ignored)
43
body:
54
- type: textarea
65
id: description

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: 🚀 Feature Request
22
description: Suggest an idea, feature, or enhancement
3-
labels: [discussion]
43
title: "[FEATURE]:"
54

65
body:

.github/ISSUE_TEMPLATE/question.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Question
22
description: Ask a question
3-
labels: ["question"]
43
body:
54
- type: textarea
65
id: question

.github/TEAM_MEMBERS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,7 @@ MrMushrooooom
1111
nexxeln
1212
R44VC0RP
1313
rekram1-node
14-
RhysSullivan
1514
thdxr
15+
simonklee
16+
vimtor
17+
starptech

.github/VOUCHED.td

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

.github/actions/setup-bun/action.yml

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: "Setup Bun"
22
description: "Setup Bun with caching and install dependencies"
3+
inputs:
4+
install-flags:
5+
description: "Additional flags to pass to 'bun install'"
6+
required: false
7+
default: ""
38
runs:
49
using: "composite"
510
steps:
@@ -18,7 +23,7 @@ runs:
1823
fi
1924
2025
- name: Setup Bun
21-
uses: oven-sh/setup-bun@v2
26+
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
2227
with:
2328
bun-version-file: ${{ !steps.bun-url.outputs.url && 'package.json' || '' }}
2429
bun-download-url: ${{ steps.bun-url.outputs.url }}
@@ -28,8 +33,9 @@ runs:
2833
shell: bash
2934
run: echo "dir=$(bun pm cache)" >> "$GITHUB_OUTPUT"
3035

31-
- name: Cache Bun dependencies
32-
uses: actions/cache@v4
36+
- name: Restore Bun dependencies
37+
id: bun-cache
38+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3339
with:
3440
path: ${{ steps.cache.outputs.dir }}
3541
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
@@ -46,8 +52,15 @@ runs:
4652
# e.g. ./patches/ for standard-openapi
4753
# https://github.com/oven-sh/bun/issues/28147
4854
if [ "$RUNNER_OS" = "Windows" ]; then
49-
bun install --linker hoisted
55+
bun install --linker hoisted ${{ inputs.install-flags }}
5056
else
51-
bun install
57+
bun install ${{ inputs.install-flags }}
5258
fi
5359
shell: bash
60+
61+
- name: Save Bun dependencies
62+
if: steps.bun-cache.outputs.cache-hit != 'true' && github.event_name != 'pull_request' && github.event_name != 'pull_request_target'
63+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
64+
with:
65+
path: ${{ steps.cache.outputs.dir }}
66+
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}

.github/actions/setup-git-committer/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
steps:
2020
- name: Create app token
2121
id: apptoken
22-
uses: actions/create-github-app-token@v2
22+
uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349 # v2.2.2
2323
with:
2424
app-id: ${{ inputs.opencode-app-id }}
2525
private-key: ${{ inputs.opencode-app-secret }}

0 commit comments

Comments
 (0)