We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 248e5e3 + 6ac68ca commit 07d5963Copy full SHA for 07d5963
examples/ts/angular/Dockerfile
@@ -0,0 +1,9 @@
1
+FROM node:8
2
+
3
+WORKDIR /usr/src/app
4
5
+COPY package* /usr/src/app/
6
+RUN npm install
7
8
+COPY . /usr/src/app/
9
+CMD npm run serve -- --host 0.0.0.0
examples/ts/angular/README.md
@@ -27,7 +27,7 @@ docker build -t bugsnag-js-example-angular . && \
27
docker run -p 4200:4200 -it bugsnag-js-example-angular
28
```
29
30
-__Note__: remember to replace `YOUR_API_KEY` in `src/lib/bugsnag.js` with your own!
+__Note__: remember to replace `YOUR_API_KEY` in `src/app/app.module.ts` with your own!
31
32
### Without docker
33
Ensure you have a version of Node.js >=4 on your machine.
0 commit comments