https://github.com/aleksarias/kontrax
software to make the whole construction contracting process easier; it's already difficult enough!
https://github.com/aleksarias/kontrax
construction contracting electrician golang grpc plumbing postgresql roofing
Last synced: 18 days ago
JSON representation
software to make the whole construction contracting process easier; it's already difficult enough!
- Host: GitHub
- URL: https://github.com/aleksarias/kontrax
- Owner: aleksarias
- Created: 2018-12-25T22:57:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-14T16:30:41.000Z (over 7 years ago)
- Last Synced: 2026-07-06T21:26:17.632Z (18 days ago)
- Topics: construction, contracting, electrician, golang, grpc, plumbing, postgresql, roofing
- Language: Go
- Homepage: http://kontrax.io
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kontrax
## Setup New Machine
### Download and install protobuf compiler, protoc
Download the appropriate release here: https://github.com/google/protobuf/releases
Unzip the folder
Enter the folder and run
./autogen.sh && ./configure && make
If you run into this error: autoreconf: failed to run aclocal: No such file or directory,
run brew install autoconf && brew install automake. And run the command from step 3 again.
Then run these other commands. They should run without issues
make check
sudo make install
which protoc
protoc --version
### Download and install gRPC and protoc plugin for Go
go get -u google.golang.org/grpc
go get -u github.com/golang/protobuf/protoc-gen-go