Add project README and .gitignore
Some checks failed
Build & Test / build (push) Failing after 2s
Build & Test / publish-client (push) Has been skipped
Build & Test / publish-api (push) Has been skipped

This commit is contained in:
OpenClaw CI 2026-06-07 20:22:45 +00:00
parent 9494159f0e
commit 12082aa36b
2 changed files with 34 additions and 2 deletions

11
.gitignore vendored Normal file
View file

@ -0,0 +1,11 @@
# .NET build artifacts
bin/
obj/
*.user
*.suo
.vs/
.idea/
# OS files
.DS_Store
Thumbs.db

View file

@ -1,3 +1,24 @@
# calorie-tracker
# CalorieTracker
CalorieTracker - Blazor WASM + API calorie tracking app
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
```