You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+52-3
Original file line number
Diff line number
Diff line change
@@ -423,7 +423,7 @@ Frontend needs to know the Port of our Spring Boot backend API, which is [automa
423
423
424
424
> You can [try out your Heroku app locally](https://devcenter.heroku.com/articles/heroku-local)! Just create a .env-File with all your Environment variables and run `heroku local`!
425
425
426
-
To access the Heroku set port, we need to configure the used port inside our Vue.js application dynamically instead of hard-coded. This can be easily achieved with the help of enviroment variables, which can be added to the [dev.env.js](https://github.com/jonashackt/spring-boot-vuejs/blob/master/frontend/config/dev.env.js) and [prod.env.js](https://github.com/jonashackt/spring-boot-vuejs/blob/master/frontend/config/prod.env.js) files. Let´s do this with the variable `API_PORT`:
426
+
To access the Heroku set port, we need to configure the used port inside our Vue.js application dynamically instead of hard-coded. This can be easily achieved with the help of enviroment variables, which can be added to the [dev.env.js](https://github.com/jonashackt/spring-boot-vuejs/blob/master/frontend/config/dev.env.js), [test.env.js](https://github.com/jonashackt/spring-boot-vuejs/blob/master/frontend/config/test.env.js) and [prod.env.js](https://github.com/jonashackt/spring-boot-vuejs/blob/master/frontend/config/prod.env.js) files. Let´s do this with the variable `API_PORT`:
427
427
428
428
```
429
429
module.exports = {
@@ -445,12 +445,61 @@ If you want, have a look at [Service.vue](https://github.com/jonashackt/spring-b
445
445
446
446
#### Using dynamic Heroku port in Vue.js frontend
447
447
448
-
Now as we need to dynamically configure the Port Heroku will set, we need to access this in the webpack build, which is our only chance to get to know the concrete port Heroku is using for our application. As []this great post states](https://codeburst.io/accessing-heroku-config-variables-in-your-vue-webpack-app-145afb32dd67) we need to configure our [package.json](https://github.com/jonashackt/spring-boot-vuejs/blob/master/frontend/package.json) to do a post install step with `"postinstall": "npm run build"` and let webpack override the enviroment variables in our configuration files like dev.env.js:
448
+
Now as we need to dynamically configure the Port Heroku will set, we need to access this in the webpack build, which is our only chance to get to know the concrete port Heroku is using for our application. As we use the [frontend-maven-plugin](https://github.com/eirslett/frontend-maven-plugin), we need to somehow pass the Heroku Port through this plugin to webpack, since we don´t run webpack or npm commands manually ourselfs somewhere.
449
+
450
+
The possibilty to [configure Environment variables in the frontend-maven-plugin](https://github.com/eirslett/frontend-maven-plugin/wiki#environment-variables) does the trick: In the `Build and minify static files` section, where `npm run build` is executed, we add the following configuration to the plugin:
451
+
452
+
```
453
+
<environmentVariables>
454
+
<SERVER_PORT>${server.port}</SERVER_PORT>
455
+
</environmentVariables>
456
+
```
457
+
458
+
The variable `server.port` inherits the magic then.
459
+
460
+
Because we locally don´t want to have extra hassles with setting and unsetting Environment variables for ports and want simply use port `8088` for accessing our backend, we need to be able to set a default value. This is done through the following property:
461
+
462
+
```
463
+
<properties>
464
+
...
465
+
<!-- default port, that will be replaced in the static Vue.js files for accessing the Spring Boot backend -->
466
+
<server.port>8088</server.port>
467
+
</properties>
468
+
```
469
+
470
+
Now, if the environment variable `PORT=7000` is defined for example (you can try this locally e.g. on a Mac with `export PORT=7000`), the variable `server.port` should instead change to 7000. Because we sadly don´t have the Spring Boot like `${VARIABLE:-default}` notation in Maven, we need to use the [<activation> feature of Maven profiles](https://stackoverflow.com/a/40756182/4964553). With this, we are able to check, if a Environment variable is set:
449
471
450
472
```
451
-
API_PORT: JSON.stringify(process.env.PORT)
473
+
<profiles>
474
+
<profile>
475
+
<id>HerokuPort</id>
476
+
<activation>
477
+
<property>
478
+
<name>env.PORT</name>
479
+
</property>
480
+
</activation>
481
+
<properties>
482
+
<!-- Override the default SERVER_PORT, e.g. if PORT environment variable is set
483
+
- which is mostly the case on Heroku etc. -->
484
+
<server.port>${env.PORT}</server.port>
485
+
</properties>
486
+
</profile>
487
+
</profiles>
452
488
```
453
489
490
+
And as we can access environment variables in Maven through `${env.VARIABLE_NAME}` (see https://stackoverflow.com/a/10463133/4964553), we just use `${env.PORT}` in case the Maven profile activation feature found the `PORT` environment variable.
491
+
492
+
Now we´re able to use our newly set Environment Variable SERVER_PORT inside our `dev.env.js`, `test.env.js` and `prod.env.js`:
493
+
494
+
```
495
+
API_PORT: JSON.stringify(process.env.SERVER_PORT)
496
+
```
497
+
498
+
Now our App is finally able to use the dynamically set port! You may have a look onto the Developer Console when accessing the [Service.vue](https://github.com/jonashackt/spring-boot-vuejs/blob/master/frontend/src/components/Service.vue) and see the output of the port:
0 commit comments