summarylogtreecommitdiffstats
path: root/burstcoin-wallet.install
diff options
context:
space:
mode:
Diffstat (limited to 'burstcoin-wallet.install')
-rw-r--r--burstcoin-wallet.install22
1 files changed, 22 insertions, 0 deletions
diff --git a/burstcoin-wallet.install b/burstcoin-wallet.install
new file mode 100644
index 000000000000..d6d7606d8d0e
--- /dev/null
+++ b/burstcoin-wallet.install
@@ -0,0 +1,22 @@
+post_install() {
+ echo "+-------------------------------------------------------------------------------------+"
+ echo "| Config: /opt/burstcoin-wallet/conf/brs-default.properties |"
+ echo "| By default, burst wallet uses MySQL |"
+ echo "| |"
+ echo "| If you want to use MySQL: pacman -S mariadb |"
+ echo "| and configure by instruction: https://github.com/PoC-Consortium/burstcoin |"
+ echo "| |"
+ echo "| If you want to use H2 DB, you do not need to install additional, |"
+ echo "| change parameters in config, where DB.url is path to file where will storage DB: |"
+ echo "| DB.Url=jdbc:h2:/home/USER/burst_db/burst;DB_CLOSE_ON_EXIT=FALSE |"
+ echo "| DB.Username= |"
+ echo "| DB.Password= |"
+ echo "| |"
+ echo "| Run wallet: sudo systemctl start burstcoin-wallet.service |"
+ echo "| URL: http://127.0.0.1:8125/index.html |"
+ echo "+-------------------------------------------------------------------------------------+"
+}
+
+post_upgrade() {
+ post_install
+}