Management platform for buying, selling and renting products.
- Install .NET Core 2.0
- Install Node JS
- Install SQL Server Express
- Install VS Code (or your preferred editor)
Install some basic VS Code extensions:
- ASP.NET Helper
- C#
- C# Extensions
- HTML Snippets
- JavaScript ES6
- Sass
-
Configure your
appsettings.json
(there is anappsettings.sample.json
file to guide you) -
Go to source folder (from root):
cd src
-
Install .NET Core packages:
dotnet restore
-
Run migrations:
dotnet ef database update --context AppDbContext
-
Install Node JS packages:
npm install
-
Build assets to wwwroot:
npm start
-
Run the application:
dotnet run
-
Go to test folder (from root):
cd test
-
Install .NET Core packages:
dotnet restore
-
Run all tests:
dotnet test