Skip to content

Hosting and Configuration

Enis edited this page Dec 3, 2018 · 3 revisions

Prerequisites

  • Java 8+
  • Unix based System
  • bash

Hosting

You need to download the latest release (coming soon) of the executable jar or compile it yourself. The Spring-Boot executable jar can easily be used as a Unix/Linux service. More information: Installing Spring Boot Applications.

Configuring

Create a file named application.properties in the same directory as the executable jar file. The property file contains information about the mining pool.

Mining Pools

Define the profile inside the application.properties by setting spring.profiles.active to a supported pool. Example: spring.profiles.active=crypto-guru.

Currently supported pools:

Telegram Bot

bot.token=123456789:NeverShareYourToken
bot.username=MyBurstBot

Donation

You may provide your burst address in the configuration. The donation address will be displayed when the user runs /donate

host.donation.address=BURST-AAAA-BBBB-CCCC-DDDDD
host.donation.name=MyTelegramUserName

Example Configuration (CryptoGuru Pool):

# Required Bot Configuration
bot.token=123456789:NeverShareYourToken
bot.username=MyBurstBot

# Mining Pool configuration
spring.profiles.active=minertable
pool.url.base=https://50-50-pool.burst.cryptoguru.org

# Optional donation addresses
host.donation.address=BURST-AAAA-BBBB-CCCC-DDDDD
host.donation.name=MyTelegramUserName
Clone this wiki locally