react-express-mongodb: rename server to backend
The goal here is to keep the same structure than the other examples. Also, considering that it has a "frontend" folder, the equivalent for the server should be "backend". Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
This commit is contained in:
parent
e29f0d1c54
commit
be8875c9b6
@ -16,16 +16,17 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- react-express
|
- react-express
|
||||||
depends_on:
|
depends_on:
|
||||||
- server
|
- backend
|
||||||
server:
|
|
||||||
container_name: server
|
backend:
|
||||||
|
container_name: backend
|
||||||
restart: always
|
restart: always
|
||||||
build:
|
build:
|
||||||
context: server
|
context: backend
|
||||||
args:
|
args:
|
||||||
NODE_PORT: 3000
|
NODE_PORT: 3000
|
||||||
volumes:
|
volumes:
|
||||||
- ./server:/usr/src/app
|
- ./backend:/usr/src/app
|
||||||
- /usr/src/app/node_modules
|
- /usr/src/app/node_modules
|
||||||
depends_on:
|
depends_on:
|
||||||
- mongo
|
- mongo
|
||||||
@ -44,4 +45,3 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
react-express:
|
react-express:
|
||||||
express-mongo:
|
express-mongo:
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
"fsevents": "^2.1.2"
|
"fsevents": "^2.1.2"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "PORT=5000 react-scripts start",
|
"start": "react-scripts start",
|
||||||
"build": "react-scripts build",
|
"build": "react-scripts build",
|
||||||
"test": "react-scripts test",
|
"test": "react-scripts test",
|
||||||
"eject": "react-scripts eject"
|
"eject": "react-scripts eject"
|
||||||
@ -25,7 +25,7 @@
|
|||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"extends": "react-app"
|
"extends": "react-app"
|
||||||
},
|
},
|
||||||
"proxy": "http://server:3000",
|
"proxy": "http://backend:3000",
|
||||||
"browserslist": {
|
"browserslist": {
|
||||||
"production": [
|
"production": [
|
||||||
">0.2%",
|
">0.2%",
|
||||||
|
Loading…
Reference in New Issue
Block a user