Simple web service that let's you browse tickers and their movement in price.
You will need .NET 5 and running instance of SQL Server.
- Clone the repository
git clone https://github.com/adamjedrzejewski/stocks.git
- Restore dependencies
dotnet restore
- Build
dotnet build --configuration Release
Put configuration options in Server/appsettings.json, consider using secrets if for other purposes than testing.
You will need:
- SQL Server connection string
"ConnectionStrings": {
"default": "{your connection string}"
}
- Alpha Vantage API key. Get one here.
"AlphaVantageServiceApiKey": "{your api key}"
dotnet run --configuration Release # inside Server directory
Distributed under the BSD-3-Clause License. See LICENSE
for more information.