Add configurability of the server port.

This commit is contained in:
Jonathan Bernard
2018-12-23 17:57:38 -06:00
parent 186b7d5b29
commit ee1147a1a5
5 changed files with 13 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Package
bin = @["strawboss"]
version = "0.5.0"
version = "0.5.1"
author = "Jonathan Bernard"
description = "My personal continious integration worker."
license = "MIT"
@ -44,3 +44,8 @@ task test, "Runs both the unit and functional test suites.":
echo "\nRunning functional tests."
echo "-------------------------"
exec "src/test/nim/run_functional_tests"
task dist, "Creates distributable package.":
exec "nimble build"
mkdir "dist"
exec "cp strawboss strawboss.config.json dist/."