https://github.com/cameronraysmith/testflocken
https://github.com/cameronraysmith/testflocken
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cameronraysmith/testflocken
- Owner: cameronraysmith
- Created: 2023-12-20T00:31:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-20T03:10:10.000Z (over 2 years ago)
- Last Synced: 2025-03-06T00:47:48.548Z (about 1 year ago)
- Language: Makefile
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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
```