aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-07-22 10:01:31 +0200
committerKarel Kočí <cynerd@email.cz>2015-07-22 10:01:31 +0200
commit165f6b3988a74bf3b02505fc49c64dfefb693adb (patch)
tree028e1e1c6e31e8d77f19439b6b22112e16ce58d2 /conf.py
parenta50d00aa9b316fcc773849ca78943ccb1c95485e (diff)
downloadlinux-conf-perf-165f6b3988a74bf3b02505fc49c64dfefb693adb.tar.gz
linux-conf-perf-165f6b3988a74bf3b02505fc49c64dfefb693adb.tar.bz2
linux-conf-perf-165f6b3988a74bf3b02505fc49c64dfefb693adb.zip
Implemented database
Database will be used for storing measured data.
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/conf.py b/conf.py
index e5a4059..3909de7 100644
--- a/conf.py
+++ b/conf.py
@@ -31,6 +31,29 @@ boot_command = ['scripts/novaboot/novaboot', nbscript] + novaboot_args
# Arguments passed to PicoSAT.
picosat_args = ['--all']
+# db_database
+# Database in PostgreSQL to be used for this tools
+db_database = 'lcp'
+# db_user
+# Define PostgreSQL user
+db_user = 'cynerd'
+# db_password
+# Define PostrgreSQL user password
+db_password = 'cynerd'
+# db_host
+# Address of PostgreSQL database server
+db_host = 'localhost'
+# db_port
+# Port of PotgreSQL database server
+db_port = 5432
+
+# git_describe_cmd
+# Command used for getting tools version and status from git
+git_describe_cmd = ['git', 'describe', '--always', '--tags', '--dirty']
+# git_commit_cmd
+# Command used for getting commit hash from git
+git_commit_cmd = ['git', 'rev-parse', '--verify', 'HEAD']
+
## Programs output show/hide
# These options hides output of launched programs from terminal.
# If variable is True, output is printed. Otherwise is hidden.