Skip to content

Commit

Permalink
Tweaks to get this building + cleanup (#9)
Browse files Browse the repository at this point in the history
I had to make a few tweaks to get the projects working on OSX:
1. Make sure that ClientApp opens on port 5002
2. Move IdentityApp to sqlite
3. Tweak URL in fetchdata.component.ts to remove extra slash
4. Gitignore build artifacts
  • Loading branch information
astegmaier authored and elanderson committed Jul 17, 2017
1 parent 9e2f973 commit a7222cd
Show file tree
Hide file tree
Showing 16 changed files with 13 additions and 112,316 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -250,3 +250,7 @@ paket-files/
# JetBrains Rider
.idea/
*.sln.iml

# Ignore ClientApp build artifacts
/ClientApp/wwwroot/dist/
/ClientApp/ClientApp/dist/
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class FetchDataComponent {
public forecasts: WeatherForecast[];

constructor(http: Http, @Inject('API_URL') apiUrl: string, authService: AuthService) {
authService.AuthGet(apiUrl + '/SampleData/WeatherForecasts').subscribe(result => {
authService.AuthGet(apiUrl + 'SampleData/WeatherForecasts').subscribe(result => {
this.forecasts = result.json() as WeatherForecast[];
});
}
Expand Down
288 changes: 0 additions & 288 deletions ClientApp/ClientApp/dist/89889688147bd7575d6327160d64e760.svg

This file was deleted.

Loading

0 comments on commit a7222cd

Please sign in to comment.