Add gitignore and README skeleton

This commit is contained in:
EugeneTes
2026-08-15 11:14:38 +00:00
parent a08138a772
commit d69e65a979
2 changed files with 34 additions and 1 deletions

28
.gitignore vendored Normal file
View File

@@ -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

View File

@@ -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.