An open API service indexing awesome lists of open source software.

https://github.com/cameronraysmith/testflocken


https://github.com/cameronraysmith/testflocken

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# testflocken

## structure

tree

```sh
.
├── .github
│ └── workflows
│ └── ci.yml
├── testflocken
│ ├── __init__.py
│ ├── __main__.py
│ ├── app.py
│ ├── cli.py
│ └── py.typed
├── tests
│ ├── __init__.py
│ └── test_app.py
├── .dockerignore
├── .env
├── .envrc
├── .gitignore
├── .pre-commit-config.yaml
├── CHANGELOG.md
├── Makefile
├── README.md
├── flake.lock
├── flake.nix
├── poetry.lock
└── pyproject.toml

5 directories, 20 files
```