From eff60436ebadaf55061eb916255f8222a99655a0 Mon Sep 17 00:00:00 2001 From: DaX Date: Mon, 16 Feb 2026 02:33:35 +0100 Subject: [PATCH] Clean up repo: remove amplify.yml, update gitignore Delete deprecated Amplify config leftover from Gitea migration. Update next-env.d.ts for Next.js 15.5 route types. Add .mcp.json and *.png to gitignore. --- .gitignore | 8 +++++++- amplify.yml | 18 ------------------ next-env.d.ts | 1 + 3 files changed, 8 insertions(+), 19 deletions(-) delete mode 100644 amplify.yml diff --git a/.gitignore b/.gitignore index 2362c80..4fe758d 100644 --- a/.gitignore +++ b/.gitignore @@ -57,4 +57,10 @@ temp-*.sh # Lambda packages lambda/*.zip -lambda/**/node_modules/ \ No newline at end of file +lambda/**/node_modules/ + +# MCP config (local dev tooling) +.mcp.json + +# Images/screenshots +*.png \ No newline at end of file diff --git a/amplify.yml b/amplify.yml deleted file mode 100644 index c00a95b..0000000 --- a/amplify.yml +++ /dev/null @@ -1,18 +0,0 @@ -version: 1 -frontend: - phases: - preBuild: - commands: - - npm ci - - npm run security:check - build: - commands: - - npm run build - artifacts: - baseDirectory: out - files: - - '**/*' - cache: - paths: - - node_modules/**/* - - .next/cache/**/* \ No newline at end of file diff --git a/next-env.d.ts b/next-env.d.ts index 1b3be08..830fb59 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,5 +1,6 @@ /// /// +/// // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.