This project contains:
- Frontend: Angular (with Dashboard and Stock Prices components)
- Backend: ASP.NET Core Web API (with SQLite database)
- Navigate to the
frontend
folder:cd frontend npm install ng serve
- Access the app at
http://localhost:4200
- Navigate to the
backend
folder:cd backend dotnet restore dotnet run
- The API will be available at
https://localhost:5001
orhttp://localhost:5000
frontend/
: Angular appbackend/
: ASP.NET Core Web API with SQLite
- Implement API endpoints in backend for stock prices and dashboard data
- Connect frontend to backend via HTTP services
- Add authentication and authorization if needed
For more details, see .github/copilot-instructions.md
.