Skip to content

Latest commit

 

History

History
36 lines (19 loc) · 556 Bytes

DEV.md

File metadata and controls

36 lines (19 loc) · 556 Bytes

Building Project

make - Run this command in the parent directory to build the project.

Running Project

cd build

./piper_server --port 8080

Run this command in the build directory to run the project.

Creating new package versions

Make sure what the current tag version of the project is. You can check this by running the following command:

git tag

Creating a new tag and pushing it will create a new release on the github repository.

git tag v1.0

git push origin v1.0

git push --tags