Skip to content

Warehouse Standalone Server

The Server application can work standalone or alongside Warehouse Desktop Application (from v1.7.1). The Package can be installed on a Debian-based OS.
After installing Warehouse Standalone Server, a simple web interface for inventory a URL button redirecting to the Admin Panel will be available on port 4300.

Installation

Download the latest release of the server application from GitHub via this link:

Install the package using terminal

sudo apt install ~/Downloads/warehouse-server.deb
or
sudo dpkg -i ~/Downloads/warehouse-server.deb

Server Application files:

1
2
3
4
/opt/warehouse/photos/           Photos Derectory
/opt/warehouse/settings.json     Application Settings
/opt/warehouse/warehouse.db      Database (SQLite)
/opt/warehouse/warehouse-server  Main Server Application

Daemon

The Server automatically installs and starts the daemon

/lib/systemd/system/warehouse-server.service
After installation, the web interface will be available at: http://ip_address:4300

The Server port and other settings can be changed in settings.json

Application Settings

file: /opt/warehouse/settings.json and default settings

1
2
3
4
5
6
7
8
9
{
  "db_path": "/opt/warehouse/warehouse.db",
  "show_content": false,
  "photos_dir": "/opt/warehouse/photos",
  "language": "en",
  "admin_password": "12345",
  "port": 4300,
  "host": "0.0.0.0"
}

Describe of setings

db_path       [string]    Current Database file
show_content  [boolean]   Show Items-name in Container for Desktop App (Default: false)
photos_dir    [string]    Current Photos Directory
language      [string]    Current Application Language (Default: "en")
  Available language packages:
  ge - german
  en - English
  sp - Spanish
  fr - French
  it - Italian
  pl - Polish
  ua - Ukrainian
admin_password  [string]  Current password for Admin panel (Default: 12345)
port            [integer] Current Server Port (Default: 4300)
host            [string]  0.0.0.0 For everyone / 127.0.0.1 - for local use

Removing

To remove the server run the following command in the terminal

sudo apt purge warehouse-server
or
sudo dpkg -r warehouse-server