Do folks have tips on making their local developme...
# getting-started
g
Do folks have tips on making their local development faster? For example: If I'm doing work on the front-end, I run the following command after making changes:
Copy code
./gradlew :datahub-web-react:build \
    -x :datahub-web-react:yarnLint \
    -x :datahub-web-react:yarnTest \
    && docker restart datahub-frontend-react
Do people have similar/better workflows for front end & backend development? I've thought about using something like watchmedo to automatically detect if anything in the frontend sub dir gets touched and do the automatic restart.
🤦🏽‍♂️ I'm dumb. There's a whole page documenting this... https://datahubproject.io/docs/developers/
g
you can also check out
so you can just run
yarn install
and then
yarn start
to run a local react app
this will listen to js changes and update nearly instantly
g
ooooooo
g
yes its very nice 🙂
g
YES, that's exactly what I was looking for, thanks!