Add version file, remove bin files from repo, and update .gitignore.

This commit is contained in:
Jonathan Bernard 2019-02-18 10:13:59 -06:00
parent dbe2e3d2be
commit 77084565a1
4 changed files with 8 additions and 1 deletions

4
.gitignore vendored
View File

@ -1,2 +1,6 @@
nimcache/
*.sw?
api/personal_measure_api
api/postgres.container.id
api/src/main/nim/personal_measure_apipkg/db

Binary file not shown.

View File

@ -1,6 +1,8 @@
# Package
version = "0.1.0"
include "src/main/nim/personal_measure_apipkg/version.nim"
version = PM_API_VERSION
author = "Jonathan Bernard"
description = "JDB\'s Personal Measures API"
license = "MIT"

View File

@ -0,0 +1 @@
const PM_API_VERSION* = "0.1.0"