eddyystop / feathers-starter-react-redux-login-roles

Production ready starter package. Local auth, roles; React-Router auth. Easily use Feathers services with Redux.
MIT License
195 stars 50 forks source link

run build:devserver in docker #43

Open llitfkitfk opened 6 years ago

llitfkitfk commented 6 years ago

need add --host 0.0.0.0 in build:devserver

"build:devserver": "NODE_ENV=devserver webpack-dev-server --host 0.0.0.0 --config webpack.devserver.config.js --content-base public/dist/ | grep -v \"\[built\]\"",

eddyystop commented 6 years ago

I have not needed that to run the repo. Why do you think its needed?

llitfkitfk commented 6 years ago

when using for local development with docker for mac

docker run -p 8080:8080  node-feathersjs npm run build:devserver
docker run -p 3030:3030  node-feathersjs npm run start:devserver
eddyystop commented 6 years ago

Thanks for the information.

This is useful information though this repo does not handle deployment, so I've tagged this issue "useful info".

llitfkitfk commented 6 years ago

Thanks