https://github.com/buntec/diffodil
Git diffs in your browser 🌼
https://github.com/buntec/diffodil
diff git python react web
Last synced: 2 months ago
JSON representation
Git diffs in your browser 🌼
- Host: GitHub
- URL: https://github.com/buntec/diffodil
- Owner: buntec
- License: mit
- Created: 2025-07-27T08:07:38.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-27T17:55:48.000Z (11 months ago)
- Last Synced: 2025-07-27T19:29:58.790Z (11 months ago)
- Topics: diff, git, python, react, web
- Language: Python
- Homepage:
- Size: 757 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Diffodil 🌼
Git diffs in your browser.
Work in progress! 🚧
# Use
Using [uv](https://github.com/astral-sh/uv):
```sh
uvx git+https://github.com/buntec/diffodil --help
```
(Should work similarly with `pipx`.)
# Dev
Prerequisites:
- [bun](https://bun.com/)
- [uv](https://github.com/astral-sh/uv)
Optional but recommended:
- [just](https://github.com/casey/just)
- [direnv](https://direnv.net/)
- [pixi](https://pixi.sh/latest/)
Install frontend dependencies like this:
```sh
just init
```
To work on frontend and backend, open two shells and do:
```sh
just run-frontend-dev
just run-backend-dev /path/to/root
```
Don't forget to rebuild and commit the production frontend assets when you are done:
```sh
just build-frontend
```
To build the Python wheel:
```sh
just build
```