Requirements:
Angular 8.1 or later, .NET Core SDK 2.2 or later
This project is set up for PostGreSQL, but you can easily change it to your SQL server of choice.
Simply add the necessary .NET package and change the methods in Startup.cs accordingly.
Before Coding:
- In the project directory, run
dotnet restoreto build the necessary files. - Still in the project directory, run
dotnet ef migrations add [MIGRATION_NAME], followed bydotnet ef database update. Assuming you have set up your database connection properly, this should build the schema for you. - In the ClientApp directory, run
npm installto install required Angular dependencies.