Skip to main content

Installation

note

Documentation is still in progress, some pages may be missing.

Requisites

Database setup

Firebox uses a database to store the data, you can use MySQL or SQLite.

You can also configure the table prefix.

Caution

DO NOT REMOVE CACHED: true as it would slow down everything, it was added for future support of cache by using redis for multi-server synchronization.

Database section in settings.yml
database:
database-type: MYSQL
cached: true
connection:
file: database.db
host: localhost
port: '3306'
database: firebox
table-prefix: box_
user: root
pass: testing