Skip to content

Installation and Usage

Äkwav edited this page Dec 25, 2019 · 1 revision

This is a dotnet core console app. You can install dotnet core from here

Installation

  1. Have dotnet core installed
  2. Clone the repository

Development

  1. Open a Terminal/commandline window
  2. Run dotnet run {{writeableAbsolutePathToStoreDataIn}} [mode]

Production

  1. Open a Terminal/commandline window
  2. Run dotnet build -c Release
  3. Copy the content of the bin/Release/netcoreapp2.2 folder to wherever you want to run it
  4. Navigate to the folder you copied it and run dotnet run hypixel.dll {{writeableAbsolutePathToStoreDataIn}} [mode]

Modes

  • s Run as a server. Will attempt to open a Websocket Connection on port 8008
  • u Update. Pulls all current active auctions from the auctionhouse api. This should be ran every two miniutes, ore more often, to catch all auctions.
  • p Process auctions. Will go through all downloaded auctions and build indexes for them. Should be executed once an hour to get accurate overviews.
  • 7 Migrate old data
Clone this wiki locally