Webapp
Last updated
Was this helpful?
Was this helpful?
# in webapp/
cp .env.template .env# serve with hot reload at localhost:3000
$ yarn dev# build for production and launch server
$ yarn build
$ yarn start# run eslint
$ docker-compose exec webapp yarn lint# run unit tests
$ docker-compose exec webapp yarn test# start storybook
$ docker-compose exec webapp yarn storybook# run eslint in /webapp (use option --fix to normalize the files)
$ yarn lint# run unit tests in /webapp
$ yarn test# run locales in /webapp (use option --fix to sort the locales)
$ yarn locales# start storybook in /webapp
$ yarn storybook