24 lines
416 B
Markdown
24 lines
416 B
Markdown
# CalorieTracker
|
|
|
|
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
|
|
```
|