Cleaned up some URLS and removed unused token
This commit is contained in:
parent
9e6a11915b
commit
e02f48f358
2 changed files with 2 additions and 8 deletions
|
@ -5,6 +5,5 @@ COPY package.json .
|
||||||
RUN npm i --only=prod
|
RUN npm i --only=prod
|
||||||
COPY server server
|
COPY server server
|
||||||
COPY build build
|
COPY build build
|
||||||
ENV KHUFU_DEV_TOKEN $KHUFU_DEV_TOKEN
|
|
||||||
CMD ["npm", "start"]
|
CMD ["npm", "start"]
|
||||||
EXPOSE 52026
|
EXPOSE 52026
|
||||||
|
|
|
@ -32,12 +32,6 @@
|
||||||
"build:react": "react-scripts build",
|
"build:react": "react-scripts build",
|
||||||
"build:all": "npm run build:react && docker-compose build"
|
"build:all": "npm run build:react && docker-compose build"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
|
||||||
"extends": [
|
|
||||||
"react-app",
|
|
||||||
"react-app/jest"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"browserslist": {
|
"browserslist": {
|
||||||
"production": [
|
"production": [
|
||||||
">0.2%",
|
">0.2%",
|
||||||
|
@ -52,7 +46,8 @@
|
||||||
},
|
},
|
||||||
"nodemonConfig": {
|
"nodemonConfig": {
|
||||||
"env": {
|
"env": {
|
||||||
"CAIRO_URL": "http://localhost:52000"
|
"CAIRO_URL": "http://localhost:52000",
|
||||||
|
"NUBIAN_URL": "http://localhost:52001"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue