Skip to content

A .NET Core API, Angular App, and Dockerized MSSQL Database

Notifications You must be signed in to change notification settings

rchardptrsn/TourOfHeroes-dotNETCore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

.NET Core API for the Angular Tour of Heroes tutorial

Also included - a Docker MSSQL database.

This repo should have everything you need to launch a local Angular App and interact with the docker database via the .NET Core API.

To start up the app:

  1. Start the MSSQL Docker database. Medium article for more info. From the Docker Database directory, run:
# Build the database
docker build -t mssql:dev .
# Start the database
docker run \
-e 'ACCEPT_EULA=Y' \
-e 'SA_PASSWORD=Password1!' \
-e 'MSSQL_PID=Express' \
--name sqlserver \
-p 1433:1433 \
-d mssql:dev
  1. Start the .NET Core API. Medium Article for more info From the Heroes.API directory, run:
dotnet run
  1. Start the Angular app. From the Angular-Tour-of-Heroes directory, run:
ng serve --open

About

A .NET Core API, Angular App, and Dockerized MSSQL Database

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published