DBCollect/Build: Difference between revisions
Jump to navigation
Jump to search
Created page with "Category:Tools Category:DBCollect = Building DBCollect from Git repo =" |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Category:Tools]] | [[Category:Tools]] | ||
[[Category:DBCollect]] | [[Category:DBCollect]] | ||
= Building DBCollect from Git repo = | |||
{{dbcollect}} is Open Source and you can modify it as you like. | |||
If you are familiar with Github, feel free to make modifications and submit a Pull request. | |||
To (re)build it from the github repo, follow the procedure: | |||
<syntaxhighlight lang=bash> | |||
# Clone the repo | |||
$ git clone https://github.com/outrunnl/dbcollect.git | |||
# cd to the repo directory | |||
$ cd dbcollect | |||
# Run the build script | |||
$ scripts/mkapp | |||
Creating buildinfo | |||
Creating dbcollect | |||
# The ZipApp package is created in the /tmp directory: | |||
ls -al /tmp/dbcollect | |||
-rwxrw-r-- 1 bart bart 191400 Nov 5 16:02 /tmp/dbcollect | |||
</syntaxhighlight> |
Latest revision as of 15:04, 5 November 2024
Building DBCollect from Git repo
dbcollect is Open Source and you can modify it as you like. If you are familiar with Github, feel free to make modifications and submit a Pull request.
To (re)build it from the github repo, follow the procedure:
# Clone the repo
$ git clone https://github.com/outrunnl/dbcollect.git
# cd to the repo directory
$ cd dbcollect
# Run the build script
$ scripts/mkapp
Creating buildinfo
Creating dbcollect
# The ZipApp package is created in the /tmp directory:
ls -al /tmp/dbcollect
-rwxrw-r-- 1 bart bart 191400 Nov 5 16:02 /tmp/dbcollect