Moved brewman python project down a level into its own folder

This commit is contained in:
Amritanshu Agrawal 2020-10-10 11:19:15 +05:30
parent 00321fe022
commit 889cac237c
90 changed files with 23 additions and 8 deletions

9
.gitignore vendored
View File

@ -1,9 +1,2 @@
*.pyc
env
venv
.project
.pydevproject
*/__pycache__/
.idea/
*.egg-info/
frontend
frontend

View File

@ -43,3 +43,22 @@ python3 -m pip install pyramid waitress sqlalchemy zope.sqlalchemy psycopg2
## 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
```

3
brewman/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.pyc
*/__pycache__/
*.egg-info/