https://github.com/sloppycoder/git-pr-stats
https://github.com/sloppycoder/git-pr-stats
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sloppycoder/git-pr-stats
- Owner: sloppycoder
- Created: 2023-09-11T10:08:38.000Z (over 2 years ago)
- Default Branch: develop
- Last Pushed: 2024-03-18T15:44:37.000Z (about 2 years ago)
- Last Synced: 2025-11-23T23:29:41.949Z (6 months ago)
- Language: Python
- Size: 416 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to your Python project
## Run code gen
```shell
ariadne-codegen --config codegen-github.toml
```
## Setup
The easiest way to get started is probably use [Jetpack.io devbox](https://www.jetpack.io/devbox). Install devbox first, then
```shell
devbox shell
# you should ready to go
```
The more traditional way is to install python 3.10 and [poetry](https://python-poetry.org/), then
```shell
# create virtualenv
poetry shell
# install dependencies
poetry install
```
## Develop the code for the stack
```shell
# run unit tests
pytest
```