Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/dotnet/APIView/APIViewWeb/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ If any of the above steps is showing errors, following are the items to check:

- Verify and ensure cosmos DB instance has all 3 containers as per the instructions above and verify partition key for each of them.

### SPA Client

APIView uses a SPA (Single Page Application) for part of its user interface. If adding completely new pages please make the contributions to the SPA client. See [SPA Client Contributing Doc](../ClientSPA/CONTRIBUTING.md) for more information.

Happy coding!!!!

Expand Down
28 changes: 28 additions & 0 deletions src/dotnet/APIView/ClientSPA/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Contributing

This is the SPA Client project for [APIView](../APIViewWeb/CONTRIBUTING.md)

## Pre-requisites

### Development machine setup
- Ensure you have completed [APIView Setup](../APIViewWeb/CONTRIBUTING.md#development-machine-setup)
- Install angular cli
```
npm install -g @angular/cli
```
- Install node modules at `C:\git\azure-sdk-tools\src\dotnet\APIView\ClientSPA`
```
npm install
```

### Runing SPA CLient Locally
To run client SPA locally use the angular serve command with sll option
Comment thread
chidozieononiwu marked this conversation as resolved.
Outdated
```
ng serve --ssl
```

### Testing SPA CLient Locally
To run client SPA tests use angular test command
```
ng test
```