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
@@ -303,6 +304,16 @@ __Just remember__, `.env` file suppose to keep your secret, and prevent your fro
303
304
304
305
We are using [dotenv](https://github.com/motdotla/dotenv) for the `.env` feature, they have pretty good documentation.
305
306
307
+
## Port Configuration
308
+
There will be a chance that you will need your port to be other than `8080`. For example, your local backend service might already take `8080`; Or you want to run multiple project, one on `8080` and one on `80801`.
309
+
310
+
If you are running one project that needs a different port, you can just modify one place
311
+
1)`default.json` --> `port` section.
312
+
313
+
But if you want to run multiple projects at the same time, you will need to configure ports in two places
314
+
1)`default.json` --> `port`
315
+
2) Dashboard port --> `package.json` --> `dev` ( default dashboard port is `9901` )
316
+
306
317
## Installing Dependencies
307
318
308
319
We are using `npm` in this project, so if you would like to install a dependencies, for example, D3, you can do something like the following :-
Copy file name to clipboardExpand all lines: package.json
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
{
2
2
"name": "react-redux-boilerplate",
3
-
"version": "0.9.56",
3
+
"version": "0.9.58",
4
4
"description": "React Redux Boilerplate is a workflow boilerplate that make life easier for developers by providing a virtual development environment and production ready build process framework out of the box.",
0 commit comments