-
-
Notifications
You must be signed in to change notification settings - Fork 42
Installing
Binner is a .Net Core application that can run as a standalone server application, or as a service. It hosts an integrated web server that serves UI pages at http://localhost:8090
. Configuration changes can be made to appsettings.json
if you wish to change the port, or a multitude of other settings.
Download the latest release for your environment.
Binner can be run as a standalone console application, or as a service.
To run as a console application:
.\Binner.Web.exe
To run as a service, run the following in an Administrative console:
.\Binner.Web install
.\Binner.Web start
Other commands are available to manage the service such as uninstall
, stop
, help
.
Proceed to the web interface at http://localhost:8090
to start using Binner!
The first time you login you will be prompted for a username and password. The default credentials are:
Username: admin
Password: admin
The Binner.Web executable is of fairly large size because of .Net Core's single file publishing (PublishSingleFile
). Essentially it bundles all of the dependent libraries into a single archive that will be extracted to .Net's temp folder for a smaller distribution. This only happens once, so the initial run will be a little slower than subsequent runs.