Forkd from https://git.aachen.ccc.de/inventory/in
299a2f5914
All checks were successful
deployment-on-pull-request / deployment (pull_request) Successful in 47s
|
||
---|---|---|
.forgejo/workflows | ||
contrib | ||
static | ||
.dockerignore | ||
.gitignore | ||
crud.py | ||
database.py | ||
Dockerfile | ||
LICENSE | ||
main.py | ||
models.py | ||
README.md | ||
requirements.txt | ||
schemas.py |
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.