https://github.com/randomtask2000/peopleapp
https://github.com/randomtask2000/peopleapp
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/randomtask2000/peopleapp
- Owner: randomtask2000
- Created: 2016-10-19T22:16:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-20T02:53:08.000Z (over 9 years ago)
- Last Synced: 2025-01-23T08:44:16.323Z (about 1 year ago)
- Language: JavaScript
- Size: 7.41 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Welcome to the PeopleApp by Emilio Nicoli developed in ASP.NET CORE
================
This app is currently incomplete and lacks the presentation layer inform of Empber data bindings and userfull unit tests.
Key Features
------------
This app demonstrates a ASP.NET Core MVC application with database and Ember.js a implimentation. However, due to the lack of time, this application remains unfinished :(
Build and Run
-------------
To build and run the sample, navigate to `src/PeopleApp` and run the following commands:
```
dotnet restore
dotnet build
dotnet run
```
`dotnet restore` installs all the dependencies.
`dotnet build` creates the assembly (or assemblies).
`dotnet run` runs the executable.
To run the tests, navigate to the `tests/PeopleApp.Tests` directory and type the following commands:
```
dotnet restore
dotnet build
dotnet test
```
`dotnet test` runs all the configured tests.
You must run `dotnet restore` in the `src/PeopleApp` directory before you can run
the tests. `dotnet build` will follow the dependency and build both the library and unit
tests projects, but it will not restore NuGet packages.