Backing up your data - replaysMike/Binner GitHub Wiki
Backing up Binner data is fairly straightforward on all supported platforms. There are only 2 files of concern: appsettings.json
and your database file which will have a different location depending on your platform. Additionally if you have modified your log configuration then also backup nlog.config
.
Windows
- Copy the database file located by default at
C:\Binner\Binner.db
to your backup folder. - Copy the configuration file located by default at
C:\Program Files\Binner\appsettings.json
to your backup folder. - Copy the log configuration file located by default at
C:\Program Files\Binner\nlog.config
. This step can be omitted if you have not modified your log configuration.
You may also want to backup any logs if you would like to preserve them.
4) Copy the log files located by default at C:\Binner\*.log
to your backup folder.
Linux / Mac
- Copy the database file located by default at
$INSTALL_FOLDER/Binner.db
to your backup folder. - Copy the configuration file located by default at
$INSTALL_FOLDER/appsettings.json
to your backup folder. - Copy the log configuration file located by default at
$INSTALL_FOLDER/nlog.config
. This step can be omitted if you have not modified your log configuration.
You may also want to backup any logs if you would like to preserve them.
4) Copy the log files located by default at $INSTALL_FOLDER/logs/*.log
to your backup folder.