https://github.com/coinculture/claw
Command Line Law - Contract management for developers | lawyers
https://github.com/coinculture/claw
contract-management contracts go golang law legaltech
Last synced: 3 months ago
JSON representation
Command Line Law - Contract management for developers | lawyers
- Host: GitHub
- URL: https://github.com/coinculture/claw
- Owner: CoinCulture
- License: apache-2.0
- Created: 2017-05-04T01:53:01.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-03-20T19:34:12.000Z (over 7 years ago)
- Last Synced: 2024-06-21T08:14:25.335Z (about 2 years ago)
- Topics: contract-management, contracts, go, golang, law, legaltech
- Language: Go
- Homepage:
- Size: 40 KB
- Stars: 23
- Watchers: 4
- Forks: 6
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# claw - Command Line Law
## Install
```
go get github.com/CoinCulture/claw
dep ensure
```
You will also need `pandoc` and `xelatex` to output pdfs.
On Ubuntu:
```
sudo apt-get install pandoc
# this one's big
sudo apt-get install texlive-xetex
```
## Run
```
# initiate a new contract
claw new john examples/templates/consultant.md
# change to the newly created directory
cd john
# edit the params
vim params.toml
# save your revisions to the hash log
claw revise
# compile the markdown and output a final pdf using pandoc
claw compile --output pdf
```