From 51ff27c569f55110649eeb179376760b6cbea394 Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Sat, 1 Mar 2025 16:32:51 +0100 Subject: [PATCH] Move all code to old/ to prepare for Nuxt rewrite --- .vscode/settings.json | 1 - .dockerignore => old/.dockerignore | 0 {.forgejo => old/.forgejo}/workflows/build.yaml | 0 Dockerfile => old/Dockerfile | 0 README.md => old/README.md | 0 {app => old/app}/api/events/actions.ts | 0 {app => old/app}/api/events/route.ts | 0 {app => old/app}/api/events/streams.ts | 0 {app => old/app}/api/subscribe/route.ts | 0 {app => old/app}/api/unsubscribe/route.ts | 0 {app => old/app}/favicon.ico | Bin {app => old/app}/globals.css | 0 {app => old/app}/layout.tsx | 0 {app => old/app}/page.tsx | 0 {app => old/app}/schedule/context.tsx | 0 {app => old/app}/schedule/page.tsx | 0 {app => old/app}/schedule/types.ts | 0 css.d.ts => old/css.d.ts | 0 next.config.ts => old/next.config.ts | 0 package.json => old/package.json | 0 pnpm-lock.yaml => old/pnpm-lock.yaml | 0 {public => old/public}/robots.txt | 0 {public => old/public}/sw.js | 0 schedule.json => old/schedule.json | 0 tsconfig.json => old/tsconfig.json | 0 {ui => old/ui}/events-edit.tsx | 0 {ui => old/ui}/events.module.css | 0 {ui => old/ui}/events.tsx | 0 {ui => old/ui}/locations.tsx | 0 {ui => old/ui}/push-notification.tsx | 0 {ui => old/ui}/timetable-terminology.png | Bin {ui => old/ui}/timetable.module.css | 0 {ui => old/ui}/timetable.tsx | 0 33 files changed, 1 deletion(-) rename .dockerignore => old/.dockerignore (100%) rename {.forgejo => old/.forgejo}/workflows/build.yaml (100%) rename Dockerfile => old/Dockerfile (100%) rename README.md => old/README.md (100%) rename {app => old/app}/api/events/actions.ts (100%) rename {app => old/app}/api/events/route.ts (100%) rename {app => old/app}/api/events/streams.ts (100%) rename {app => old/app}/api/subscribe/route.ts (100%) rename {app => old/app}/api/unsubscribe/route.ts (100%) rename {app => old/app}/favicon.ico (100%) rename {app => old/app}/globals.css (100%) rename {app => old/app}/layout.tsx (100%) rename {app => old/app}/page.tsx (100%) rename {app => old/app}/schedule/context.tsx (100%) rename {app => old/app}/schedule/page.tsx (100%) rename {app => old/app}/schedule/types.ts (100%) rename css.d.ts => old/css.d.ts (100%) rename next.config.ts => old/next.config.ts (100%) rename package.json => old/package.json (100%) rename pnpm-lock.yaml => old/pnpm-lock.yaml (100%) rename {public => old/public}/robots.txt (100%) rename {public => old/public}/sw.js (100%) rename schedule.json => old/schedule.json (100%) rename tsconfig.json => old/tsconfig.json (100%) rename {ui => old/ui}/events-edit.tsx (100%) rename {ui => old/ui}/events.module.css (100%) rename {ui => old/ui}/events.tsx (100%) rename {ui => old/ui}/locations.tsx (100%) rename {ui => old/ui}/push-notification.tsx (100%) rename {ui => old/ui}/timetable-terminology.png (100%) rename {ui => old/ui}/timetable.module.css (100%) rename {ui => old/ui}/timetable.tsx (100%) diff --git a/.vscode/settings.json b/.vscode/settings.json index 44941bc..18647fe 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -17,5 +17,4 @@ "editor.indentSize": 2, "editor.insertSpaces": true, }, - "typescript.tsdk": "node_modules\\typescript\\lib", } diff --git a/.dockerignore b/old/.dockerignore similarity index 100% rename from .dockerignore rename to old/.dockerignore diff --git a/.forgejo/workflows/build.yaml b/old/.forgejo/workflows/build.yaml similarity index 100% rename from .forgejo/workflows/build.yaml rename to old/.forgejo/workflows/build.yaml diff --git a/Dockerfile b/old/Dockerfile similarity index 100% rename from Dockerfile rename to old/Dockerfile diff --git a/README.md b/old/README.md similarity index 100% rename from README.md rename to old/README.md diff --git a/app/api/events/actions.ts b/old/app/api/events/actions.ts similarity index 100% rename from app/api/events/actions.ts rename to old/app/api/events/actions.ts diff --git a/app/api/events/route.ts b/old/app/api/events/route.ts similarity index 100% rename from app/api/events/route.ts rename to old/app/api/events/route.ts diff --git a/app/api/events/streams.ts b/old/app/api/events/streams.ts similarity index 100% rename from app/api/events/streams.ts rename to old/app/api/events/streams.ts diff --git a/app/api/subscribe/route.ts b/old/app/api/subscribe/route.ts similarity index 100% rename from app/api/subscribe/route.ts rename to old/app/api/subscribe/route.ts diff --git a/app/api/unsubscribe/route.ts b/old/app/api/unsubscribe/route.ts similarity index 100% rename from app/api/unsubscribe/route.ts rename to old/app/api/unsubscribe/route.ts diff --git a/app/favicon.ico b/old/app/favicon.ico similarity index 100% rename from app/favicon.ico rename to old/app/favicon.ico diff --git a/app/globals.css b/old/app/globals.css similarity index 100% rename from app/globals.css rename to old/app/globals.css diff --git a/app/layout.tsx b/old/app/layout.tsx similarity index 100% rename from app/layout.tsx rename to old/app/layout.tsx diff --git a/app/page.tsx b/old/app/page.tsx similarity index 100% rename from app/page.tsx rename to old/app/page.tsx diff --git a/app/schedule/context.tsx b/old/app/schedule/context.tsx similarity index 100% rename from app/schedule/context.tsx rename to old/app/schedule/context.tsx diff --git a/app/schedule/page.tsx b/old/app/schedule/page.tsx similarity index 100% rename from app/schedule/page.tsx rename to old/app/schedule/page.tsx diff --git a/app/schedule/types.ts b/old/app/schedule/types.ts similarity index 100% rename from app/schedule/types.ts rename to old/app/schedule/types.ts diff --git a/css.d.ts b/old/css.d.ts similarity index 100% rename from css.d.ts rename to old/css.d.ts diff --git a/next.config.ts b/old/next.config.ts similarity index 100% rename from next.config.ts rename to old/next.config.ts diff --git a/package.json b/old/package.json similarity index 100% rename from package.json rename to old/package.json diff --git a/pnpm-lock.yaml b/old/pnpm-lock.yaml similarity index 100% rename from pnpm-lock.yaml rename to old/pnpm-lock.yaml diff --git a/public/robots.txt b/old/public/robots.txt similarity index 100% rename from public/robots.txt rename to old/public/robots.txt diff --git a/public/sw.js b/old/public/sw.js similarity index 100% rename from public/sw.js rename to old/public/sw.js diff --git a/schedule.json b/old/schedule.json similarity index 100% rename from schedule.json rename to old/schedule.json diff --git a/tsconfig.json b/old/tsconfig.json similarity index 100% rename from tsconfig.json rename to old/tsconfig.json diff --git a/ui/events-edit.tsx b/old/ui/events-edit.tsx similarity index 100% rename from ui/events-edit.tsx rename to old/ui/events-edit.tsx diff --git a/ui/events.module.css b/old/ui/events.module.css similarity index 100% rename from ui/events.module.css rename to old/ui/events.module.css diff --git a/ui/events.tsx b/old/ui/events.tsx similarity index 100% rename from ui/events.tsx rename to old/ui/events.tsx diff --git a/ui/locations.tsx b/old/ui/locations.tsx similarity index 100% rename from ui/locations.tsx rename to old/ui/locations.tsx diff --git a/ui/push-notification.tsx b/old/ui/push-notification.tsx similarity index 100% rename from ui/push-notification.tsx rename to old/ui/push-notification.tsx diff --git a/ui/timetable-terminology.png b/old/ui/timetable-terminology.png similarity index 100% rename from ui/timetable-terminology.png rename to old/ui/timetable-terminology.png diff --git a/ui/timetable.module.css b/old/ui/timetable.module.css similarity index 100% rename from ui/timetable.module.css rename to old/ui/timetable.module.css diff --git a/ui/timetable.tsx b/old/ui/timetable.tsx similarity index 100% rename from ui/timetable.tsx rename to old/ui/timetable.tsx