balance api
1.0.0
This is an API that is aimed to provide a service to help people to control their saving and monetary accounts, control their expenses.
Right now it is just the first steps, but hopefully it will grow soon.
It is done using ASP.NET 5 (we wanted to try the multi platform approach that Microsoft claims that this new version of ASP has)
http://localhost:5000/api/values
Test end point
To run SQL scripts (database migrations) https://flywaydb.org/documentation/commandline/ was used, would be great if we have a .net port of this great tool
Just go to Migrations
directory and execute migrate.sh
script
cd src/BalanceApi/Migrations
./migrate.sh
Just go to Migrations
directory and execute clean.sh
script
cd src/BalanceApi/Migrations
./clean.sh
In order to run the set of unit tests you need to follow this instructions:
cd test/BalanceApi.Tests
dotnet restore
dotnet test