changeset 78:976638dd5c63

Update the bootstrapping / dependency injection setup to use the stub response instead of the localhost url.
author Lucas Thompson <dev@lucas.im>
date Wed, 18 Jan 2017 17:18:24 +0000
parents 58d322253d92
children 5fb318ac16d5
files src/app/app.module.ts
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/app/app.module.ts	Wed Jan 18 17:17:50 2017 +0000
+++ b/src/app/app.module.ts	Wed Jan 18 17:18:24 2017 +0000
@@ -38,7 +38,7 @@
     {provide: 'AudioContext', useValue: createAudioContext()}, // use a string token, Safari doesn't seem to like AudioContext
     AudioPlayerService,
     FeatureExtractionService,
-    {provide: 'PiperRepoUri', useValue: 'http://localhost:8080'}
+    {provide: 'PiperRepoUri', useValue: 'assets/remote-plugins.json'}
   ],
   bootstrap: [AppComponent]
 })