Skip to content

Commit

Permalink
Add project Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alimon808 committed Feb 26, 2020
1 parent 1c58b21 commit b6358cc
Show file tree
Hide file tree
Showing 9 changed files with 56 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ContosoUniversity.Api.Tests/ApiIntegrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace ContosoUniversity.Api.Tests
{
public class ApiIntegrationTests : BaseIntegrationTest<Startup>
{
[Fact]
[Fact(Skip = "Move to separate project")]
public async Task DepartmentApi_ReturnsArrayOfDepartmentObjects()
{
var url = "/Departments";
Expand Down
8 changes: 8 additions & 0 deletions ContosoUniversity.Api.Tests/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## ContosoUniversity.Api.Tests

### Run tests
```
git clone https://github.com/alimon808/contoso-university.git
cd ContosoUniversity.Api.Tests
dotnet test
```
8 changes: 8 additions & 0 deletions ContosoUniversity.Api/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## ContosoUniversity.Api

### Run Api with Swagger UI
```
git clone https://github.com/alimon808/contoso-university.git
cd ContosoUniversity.Api
dotnet run
```
3 changes: 3 additions & 0 deletions ContosoUniversity.Common/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### ContosoUniversity.Common

Shared library between Api and Web projects
9 changes: 9 additions & 0 deletions ContosoUniversity.Data.Tests/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## ContosoUniversity.Data.Tests
Test project for ContosoUniversity.Data.

### Run tests
```
git clone https://github.com/alimon808/contoso-university.git
cd ContosoUniversity.Data.Tests
dotnet test
```
1 change: 1 addition & 0 deletions ContosoUniversity.Data/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
### ContosoUniversity.Data (WIP)
17 changes: 9 additions & 8 deletions ContosoUniversity.Spa.React/ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
## Contoso University - React using JavaScriptServices
## ContosoUniversity.Spa.React
Single Page Application (SPA) using React front-end framework and WebApi backend

### Prerequisites
- .NET Core SDK v2.0.0 or later
- .NET Core SDK v2.1.0 or later
- Node.js v6.0 or later

Building the app: `dotnet build`

Running the app: `dotnet run`, navigate to http:https://localhost:5000


[Demo](https://contoso-university-demo-react.azurewebsites.net/)
### Run App
```
git clone https://github.com/alimon808/contoso-university.git
cd ContosoUniversity.Spa.React
dotnet run
```
9 changes: 9 additions & 0 deletions ContosoUniversity.Web.Tests/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## ContosoUniversity.Web.Test
Unit test project for [ContosoUniversity.Web](https://github.com/alimon808/contoso-university/tree/master/ContosoUniversity.Web)

### Run tests
```
git clone https://github.com/alimon808/contoso-university.git
cd ContosoUniversity.Web.Test
dotnet test
```
8 changes: 8 additions & 0 deletions ContosoUniversity.Web/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## ContosoUniversity.Web

### Run Mvc App
```
git clone https://github.com/alimon808/contoso-university.git
cd ContosoUnversity.Web
dotnet run
```

0 comments on commit b6358cc

Please sign in to comment.