From 12082aa36bacf4b5d34b1cd8625627ae784dad19 Mon Sep 17 00:00:00 2001 From: OpenClaw CI Date: Sun, 7 Jun 2026 20:22:45 +0000 Subject: [PATCH] Add project README and .gitignore --- .gitignore | 11 +++++++++++ README.md | 25 +++++++++++++++++++++++-- 2 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..42c9105 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# .NET build artifacts +bin/ +obj/ +*.user +*.suo +.vs/ +.idea/ + +# OS files +.DS_Store +Thumbs.db diff --git a/README.md b/README.md index 3daa7bd..569af3f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,24 @@ -# calorie-tracker +# CalorieTracker -CalorieTracker - Blazor WASM + API calorie tracking app \ No newline at end of file +Blazor WASM + API calorie tracking application. + +## Project Structure + +``` +src/ + CalorieTracker.Client/ # Blazor WASM frontend + CalorieTracker.Api/ # .NET Web API backend +``` + +## CI/CD + +Pushes to `main` or `develop` trigger automatic builds via Forgejo Actions. +Merges to `main` trigger automatic deploy to hosting. + +## Getting Started + +```bash +dotnet restore +dotnet build +dotnet test +```