https://github.com/extrabb/privacy-budget
Privacy-oriented personal budgeting tool
https://github.com/extrabb/privacy-budget
Last synced: 27 days ago
JSON representation
Privacy-oriented personal budgeting tool
- Host: GitHub
- URL: https://github.com/extrabb/privacy-budget
- Owner: ExtraBB
- License: mit
- Created: 2022-05-26T13:41:07.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-14T06:39:32.000Z (almost 3 years ago)
- Last Synced: 2025-03-28T19:45:36.889Z (about 1 month ago)
- Language: C#
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# privacy-budget
This is the backend for Privacy Budget, a privacy-conscious budgetting tool.
## Running the backend
`TODO`
## Running the tests
Run the following to view the test results:
```
dotnet test
```### Viewing the coverage
1. First install the report generator globally:
```
dotnet tool install --global dotnet-reportgenerator-globaltool --version 5.1.9
```2. Run the tests and open the coverage report:
```
dotnet test --collect:"XPlat Code Coverage"
reportgenerator "-reports:./PrivacyBudgetServertests/TestResults//coverage.cobertura.xml" "-targetdir:.coverage" -reporttypes:HTML;
```3. Open `.coverage/index.html` in your browser