brewman/README.md
tanshu ba4f8a4831 Fix:
Update password works
 Updated the precision and nullability for models
 Batch was sending non round quantity_available
 Amounts were not being displayed in daybook

 Moved dockerfile from root to have a consistent build environment
2020-11-03 21:50:30 +05:30

22 lines
330 B
Markdown

## Prettier - to format typescript files
```npx prettier --write src/app/```
## Eslint - to lint typescript files
```shell script
eslint src/app/
```
Optional to fix the errors as well
```
eslint src/app/ --fix
```
### Poerty remove environment
```sh
rm -rf `poetry env info -p`
```
### Poerty install
```sh
poetry install
```