Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bloodielie/todo-backend
https://github.com/bloodielie/todo-backend
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bloodielie/todo-backend
- Owner: Bloodielie
- License: mit
- Created: 2021-01-18T14:11:10.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-04T15:00:42.000Z (almost 4 years ago)
- Last Synced: 2024-11-09T02:50:13.906Z (2 months ago)
- Language: Python
- Size: 74.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple Todo Api
![preview](./images/preview "Preview")## Run
1. Create .env like .env.example
2. run docker-compose
```bash
docker-compose up --build
```## Dev
### Test
#### Install
```bash
pip install pytest pytest-asyncio httpx
```#### Run
```bash
pytest ./app
```### Mypy checking
#### Install
```bash
pip install mypy
```#### Run
```bash
mypy ./app
```### Black formatting
```bash
pip install black
```#### Run
```bash
black ./app
```