Skip to content

Commit d20e3c6

Browse files
authored
Replace diacritical mark with single quote
1 parent 34c3a93 commit d20e3c6

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
A live deployment is available on Heroku: https://spring-boot-vuejs.herokuapp.com
1010

11-
There´s also a blog post about this project available here: https://blog.codecentric.de/en/2018/04/spring-boot-vuejs/
11+
There's also a blog post about this project available here: https://blog.codecentric.de/en/2018/04/spring-boot-vuejs/
1212

1313
## In Search of a new Webfrontend-Framework after 2 Years of absence...
1414

@@ -229,7 +229,7 @@ Install vue-devtools Browser extension https://github.com/vuejs/vue-devtools and
229229

230230
## IntelliJ integration
231231

232-
There´s a blog post: https://blog.jetbrains.com/webstorm/2018/01/working-with-vue-js-in-webstorm/
232+
There's a blog post: https://blog.jetbrains.com/webstorm/2018/01/working-with-vue-js-in-webstorm/
233233

234234
Escpecially the `New... Vue Component` looks quite cool :)
235235

@@ -359,7 +359,7 @@ Now all calls to resources behind `api/` will return the correct CORS headers.
359359
360360
#### But STOP! Webpack & Vue have something much smarter for us to help us with SOP!
361361
362-
Thanks to my colleague [Daniel](https://www.codecentric.de/team/dre/) who pointed me to the nice proxying feature of Webpack dev-server, we don´t need to configure all the complex CORS stuff anymore!
362+
Thanks to my colleague [Daniel](https://www.codecentric.de/team/dre/) who pointed me to the nice proxying feature of Webpack dev-server, we don't need to configure all the complex CORS stuff anymore!
363363
364364
According to [Vue.js Webpack Template](https://vuejs-templates.github.io/webpack/) the only thing we need to [configure is a Proxy](https://vuejs-templates.github.io/webpack/proxy.html) for our webpack dev-server requests. This could be done easily in the [frontend/config/index.js](https://github.com/jonashackt/spring-boot-vuejs/blob/master/frontend/config/index.js) inside `dev.proxyTable`:
365365
@@ -377,7 +377,7 @@ dev: {
377377
378378
With this configuration in place, the webpack dev-server uses the [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware), which is a really handy component, to proxy all frontend-requests from http://localhost:8080 --> http://localhost:8088 - incl. Changing the Origin accordingly.
379379
380-
This is used in the [frontend/build/dev-server.js](https://github.com/jonashackt/spring-boot-vuejs/blob/master/frontend/build/dev-server.js) to configure the proxyMiddleware (you don´t need to change something here!):
380+
This is used in the [frontend/build/dev-server.js](https://github.com/jonashackt/spring-boot-vuejs/blob/master/frontend/build/dev-server.js) to configure the proxyMiddleware (you don't need to change something here!):
381381
382382
```js
383383
// proxy api requests
@@ -432,7 +432,7 @@ And with the help of super cool `Automatic deploys`, we have our TravisCI build
432432
433433
![heroku-automatic-deploys](screenshots/heroku-automatic-deploys.png)
434434
435-
You only have to connect your Heroku app to GitHub, activate Automatic deploys and set the named checkbox. That´s everything!
435+
You only have to connect your Heroku app to GitHub, activate Automatic deploys and set the named checkbox. That's everything!
436436
437437
438438
#### Accessing Spring Boot REST backend on Heroku from Vue.js frontend
@@ -451,15 +451,15 @@ export const AXIOS = axios.create({
451451
})
452452
```
453453
454-
#### Using Heroku´s Postgres as Database for Spring Boot backend and Vue.js frontend
454+
#### Using Heroku's Postgres as Database for Spring Boot backend and Vue.js frontend
455455
456456
First add [Heroku Postgres database](https://elements.heroku.com/addons/heroku-postgresql) for your Heroku app.
457457
458458
Then follow these instructions on Stackoverflow to configure all needed Environment variables in Heroku: https://stackoverflow.com/a/49978310/4964553
459459
460-
Mind the addition to the backend´s [pom.xml](backend/pom.xml) described here: https://stackoverflow.com/a/49970142/4964553
460+
Mind the addition to the backend's [pom.xml](backend/pom.xml) described here: https://stackoverflow.com/a/49970142/4964553
461461
462-
Now you´re able to use Spring Data´s magic - all you need is an Interface like [UserRepository.java](backend/src/main/java/de/jonashackt/springbootvuejs/repository/UserRepository.java):
462+
Now you're able to use Spring Data's magic - all you need is an Interface like [UserRepository.java](backend/src/main/java/de/jonashackt/springbootvuejs/repository/UserRepository.java):
463463
464464
```java
465465
package de.jonashackt.springbootvuejs.repository;
@@ -699,7 +699,7 @@ Jest itself is configured inside [frontend/test/unit/jest.conf.js](frontend/test
699699
700700
##### Run Unit tests
701701
702-
`npm run unit` - that´ll look like:
702+
`npm run unit` - that'll look like:
703703
704704
![unittestrun-jest](screenshots/unittestrun-jest.png)
705705
@@ -728,18 +728,18 @@ This will integrate the Jest Unittests right after the npm run build command, ju
728728
729729
![maven-integration-jest-unittests](screenshots/maven-integration-jest-unittests.png)
730730
731-
And don´t mind the depitction with `ERROR` - this is just a known bug: https://github.com/eirslett/frontend-maven-plugin/issues/584
731+
And don't mind the depitction with `ERROR` - this is just a known bug: https://github.com/eirslett/frontend-maven-plugin/issues/584
732732
733733
734734
##### Run Jest tests inside IntelliJ
735735
736-
First we need to install the NodeJS IntelliJ plugin (https://www.jetbrains.com/help/idea/developing-node-js-applications.html), which isn´t bundled with IntelliJ by default:
736+
First we need to install the NodeJS IntelliJ plugin (https://www.jetbrains.com/help/idea/developing-node-js-applications.html), which isn't bundled with IntelliJ by default:
737737
738738
![nodejs-intellij-plugin](screenshots/nodejs-intellij-plugin.png)
739739
740740
IntelliJ Jest integration docs: https://www.jetbrains.com/help/idea/running-unit-tests-on-jest.html
741741
742-
The automatic search inside the [package.json](frontend/package.json) for the Jest configuration file [jest.conf.js](frontend/test/unit/jest.conf.js) doesn´t seem to work right now, so we have to manually configure the `scripts` part of:
742+
The automatic search inside the [package.json](frontend/package.json) for the Jest configuration file [jest.conf.js](frontend/test/unit/jest.conf.js) doesn't seem to work right now, so we have to manually configure the `scripts` part of:
743743
744744
```
745745
"unit": "jest --config test/unit/jest.conf.js --coverage",
@@ -749,7 +749,7 @@ inside the Run Configuration under `Jest` and `All Tests`:
749749
750750
![configure-jest-inside-intellij](screenshots/configure-jest-inside-intellij.png)
751751
752-
Now, when running `All Tests`, this should look like you´re already used to Unittest IntelliJ-Integration:
752+
Now, when running `All Tests`, this should look like you're already used to Unittest IntelliJ-Integration:
753753
754754
![run-jest-inside-intellij](screenshots/run-jest-inside-intellij.png)
755755
@@ -812,7 +812,7 @@ With the latest 0.9.21 of Nightwatch, this issue is gone. __BUT:__ the the `npm
812812
813813
![nightwatch-npmaudit-vulnerabilities](screenshots/nightwatch-npmaudit-vulnerabilities.png)
814814
815-
And thus the whole build process will brake. The problem are breaking changes in [Nightwatch 1.x](https://github.com/nightwatchjs/nightwatch#nightwatch-v10), that aren´t reflected inside the Vue.js Webpack template so far (they use the latest 0.9.x, which is vulnerable): https://github.com/nightwatchjs/nightwatch/wiki/Migrating-to-Nightwatch-1.0
815+
And thus the whole build process will brake. The problem are breaking changes in [Nightwatch 1.x](https://github.com/nightwatchjs/nightwatch#nightwatch-v10), that aren't reflected inside the Vue.js Webpack template so far (they use the latest 0.9.x, which is vulnerable): https://github.com/nightwatchjs/nightwatch/wiki/Migrating-to-Nightwatch-1.0
816816
817817
818818
## Run all tests

0 commit comments

Comments
 (0)