Add project README and .gitignore
This commit is contained in:
parent
9494159f0e
commit
12082aa36b
2 changed files with 34 additions and 2 deletions
11
.gitignore
vendored
Normal file
11
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
# .NET build artifacts
|
||||||
|
bin/
|
||||||
|
obj/
|
||||||
|
*.user
|
||||||
|
*.suo
|
||||||
|
.vs/
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# OS files
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
25
README.md
25
README.md
|
|
@ -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
|
||||||
|
```
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue