gimpey-db-gateway 0.1.19

gRPC server for Gimpey DB.
Documentation
clean:
	cargo clean
	rm -rf src/generated/*

proto-gen:
	cd .. && cargo clean && cargo build

publish:
	cargo publish

# Commit all changes and then increment the version number
# based on the changes. Do not commit the version number.
# Then, run this - it will commit and push the new version.
distribute:
	make clean
	make proto-gen
	git add .
	git commit -am "chore(release): pushing new version"
	git push
	cargo build --release
	make publish