Find a file
2024-01-14 20:24:14 +01:00
static Add last_updated field to be able to track outdated information / lost items 2024-01-14 20:24:14 +01:00
.dockerignore initial commit 2022-08-04 05:41:51 +02:00
.gitignore initial commit 2022-08-04 05:41:51 +02:00
crud.py make return value of crud.put_item easier to understand 2024-01-14 20:24:14 +01:00
database.py initial commit 2022-08-04 05:41:51 +02:00
Dockerfile initial commit 2022-08-04 05:41:51 +02:00
LICENSE Add LICENSE 2022-10-07 22:58:21 +00:00
main.py Add last_updated field to be able to track outdated information / lost items 2024-01-14 20:24:14 +01:00
models.py Add last_updated field to be able to track outdated information / lost items 2024-01-14 20:24:14 +01:00
README.md initial commit 2022-08-04 05:41:51 +02:00
requirements.txt initial commit 2022-08-04 05:41:51 +02:00
schemas.py Add last_updated field to be able to track outdated information / lost items 2024-01-14 20:24:14 +01:00

in?

A simple inventory system.

It uses fastapi, sqlalchemy and sqlite.

Run

docker build -t in .
docker run -p 127.0.0.1:8000:8000 -it in

Then visit http://127.0.0.1:8000/.

The database lives at inventory.sqlite3 (at /app/ inside the container).

Development

python -m pip install -r requirements.txt
uvicorn main:app --reload

API documentation is generated at http://127.0.0.1:8000/docs or http://127.0.0.1:8000/redoc.