An open API service indexing awesome lists of open source software.

https://github.com/matheusadc/find-a-friend

The project presents an API for PET adoption using the MVC architecture.
https://github.com/matheusadc/find-a-friend

dbeaver mvc-architecture pylint python sqlite

Last synced: about 1 month ago
JSON representation

The project presents an API for PET adoption using the MVC architecture.

Awesome Lists containing this project

README

          

# description icon Description
The project presents an API for PET adoption using the MVC architecture.

# terminal icon Commands
### Pre-commit Install
```
pip install pre-commit
```

### Create a pre-commit hook
```
pre-commit install
```

### Generate .pylintrc file (Windows)
```
pylint --generate-rcfile | out-file -encoding utf8 .pylintrc
```

### Check code score
```
pylint .py
```

### SQLAlchemy Install
```
pip install SQLAlchemy==2.0.29
```

### Pytest Install
```
pip install -U pytest
```

### Run tests
```
pytest -s -v
```

### Pydantic Install
```
pip install pydantic==2.7.1
```

### Add new libraries to the requirements file
```
venv/source/pip freeze > requirements.txt
```

### Force pylint to allow the commit
```
git commit -m "your_message" --no-verify
```