Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sauberr/todo_app
Todo App
https://github.com/sauberr/todo_app
fastapi postgresql python
Last synced: about 1 month ago
JSON representation
Todo App
- Host: GitHub
- URL: https://github.com/sauberr/todo_app
- Owner: Sauberr
- License: mit
- Created: 2023-09-26T17:24:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-21T11:32:46.000Z (6 months ago)
- Last Synced: 2024-07-21T12:52:00.972Z (6 months ago)
- Topics: fastapi, postgresql, python
- Language: Python
- Homepage:
- Size: 18.9 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Todo App Version 1
The project for study FastAPi.
#### Stack:
- [Python](https://www.python.org/downloads/)
- [PostgreSQL](https://www.postgresql.org/)
- [FastApi](https://fastapi.tiangolo.com/)## Local Developing
All actions should be executed from the source directory of the project and only after installing all requirements.
1. Firstly, create and activate a new virtual environment:
```bash
python3.11 -m venv ../venv
source ../venv/bin/activate
```
2. Install packages:
```bash
pip install --upgrade pip
pip install -r requirements.txt
```