-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
![beastiary logo](docs/images/logo.png) | ||
|
||
|
||
[![PyPi](https://img.shields.io/pypi/v/beastiary.svg)](https://pypi.org/project/beastiary/) | ||
[![tests](https://github.com/Wytamma/beastiary/actions/workflows/test.yml/badge.svg)](https://github.com/Wytamma/beastiary/actions/workflows/test.yml) | ||
[![cov](https://codecov.io/gh/Wytamma/beastiary/branch/master/graph/badge.svg)](https://codecov.io/gh/Wytamma/beastiary) | ||
[![docs](https://github.com/Wytamma/beastiary/actions/workflows/docs.yml/badge.svg)](https://beastiary.wytamma.com/) | ||
|
||
This is a replacement for tracer. It's feature feature is the real time aspect. Secondly it's modern looking. 3rd it has improved features. | ||
|
||
|
||
## CLI | ||
Launch the app | ||
Can point to log file to autostart watcher | ||
|
||
## Webapp | ||
Vue | ||
Plotly | ||
|
||
## Web API | ||
FastAPI that sends data to and from DB and servers the webapp | ||
Can start file watchers | ||
|
||
## Watcher | ||
Python class that watches files and updates DB with changes. | ||
|
||
|
||
## BD (MEMORY) | ||
Protected by the CRUD | ||
|
||
|
||
## distribution | ||
CLI vs app (just launches web browser) | ||
https://docs.python-guide.org/shipping/freezing/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "beastiary" | |
version = "0.4.0" | ||
description = "" | ||
authors = ["Wytamma Wirth <[email protected]>"] | ||
readme = "../README.md" | ||
readme = "PYPI-README.md" | ||
|
||
[tool.poetry.scripts] | ||
beastiary = "backend.beastiary.main:app" | ||
|