Cleaned up some URLS and removed unused token

This commit is contained in:
Dunemask 2021-08-20 21:35:05 -06:00
parent 9e6a11915b
commit e02f48f358
2 changed files with 2 additions and 8 deletions

View file

@ -5,6 +5,5 @@ COPY package.json .
RUN npm i --only=prod
COPY server server
COPY build build
ENV KHUFU_DEV_TOKEN $KHUFU_DEV_TOKEN
CMD ["npm", "start"]
EXPOSE 52026

View file

@ -32,12 +32,6 @@
"build:react": "react-scripts build",
"build:all": "npm run build:react && docker-compose build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
@ -52,7 +46,8 @@
},
"nodemonConfig": {
"env": {
"CAIRO_URL": "http://localhost:52000"
"CAIRO_URL": "http://localhost:52000",
"NUBIAN_URL": "http://localhost:52001"
}
}
}