Moved brewman python project down a level into its own folder
This commit is contained in:
parent
00321fe022
commit
889cac237c
9
.gitignore
vendored
9
.gitignore
vendored
@ -1,9 +1,2 @@
|
||||
*.pyc
|
||||
env
|
||||
venv
|
||||
.project
|
||||
.pydevproject
|
||||
*/__pycache__/
|
||||
.idea/
|
||||
*.egg-info/
|
||||
frontend
|
||||
frontend
|
||||
|
19
README.md
19
README.md
@ -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
3
brewman/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*.pyc
|
||||
*/__pycache__/
|
||||
*.egg-info/
|
Loading…
Reference in New Issue
Block a user