From d69e65a9794af952c02724fe4c06ad32c3351103 Mon Sep 17 00:00:00 2001 From: EugeneTes Date: Sat, 15 Aug 2026 11:14:38 +0000 Subject: [PATCH] Add gitignore and README skeleton --- .gitignore | 28 ++++++++++++++++++++++++++++ README.md | 7 ++++++- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..04f0569 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# .NET +bin/ +obj/ +*.user +*.suo +.vs/ + +# ASP.NET local secrets +backend/appsettings.Development.json +backend/appsettings.Local.json + +# Node +node_modules/ +dist/ +.vite/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor / OS +.idea/ +.vscode/ +.DS_Store + +# Frontend env +frontend/.env +frontend/.env.local +frontend/.env.*.local diff --git a/README.md b/README.md index d66261c..59ab9a9 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,7 @@ -# SupabaseTest +# supabase_test +Minimal to-do list. React (Vite+TypeScript) frontend, ASP.NET Core Web API backend, Supabase for auth and Postgres. + +See [`docs/superpowers/specs/2026-08-15-supabase-todo-app-design.md`](docs/superpowers/specs/2026-08-15-supabase-todo-app-design.md) for the design. + +Setup instructions land here after the app is wired up.