Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ganiuszka authored Dec 17, 2021
1 parent 629ddbc commit a17ebd5
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Bacularis-Web

Bacularis Web is the main component of the Bacula web interface.


[![Latest Stable Version](http://poser.pugx.org/bacularis/bacularis-web/v)](https://packagist.org/packages/bacularis/bacularis-web)
[![Total Downloads](http://poser.pugx.org/bacularis/bacularis-web/downloads)](https://packagist.org/packages/bacularis/bacularis-web)
[![License](http://poser.pugx.org/bacularis/bacularis-web/license)](https://packagist.org/packages/bacularis/bacularis-web)
[![PHP Version Require](http://poser.pugx.org/bacularis/bacularis-web/require/php)](https://packagist.org/packages/bacularis/bacularis-web)

# Bacularis - The Bacula web interface

Bacularis is a web interface to configure, manage and monitor Bacula backup environment. It is a complete solution for setting up backup jobs, doing restore data, managing tape or disk volumes in local and remote storage, work with backup clients, and doing daily administrative work with backups. It also supports autochanger management. Bacularis provides advanced user management and role-based access control that enable to configure it for regular users where every user can log in to the web interface and does backup and restore own computer data only.

The project consists of two web applications: the web interface and Bacula programming interface (API) with separate administrative panel. The web interface can work with multiple Bacularis API instances to configure and manage remote Bacula components.

Bacularis is a friendly fork of Baculum. It has been founded by Baculum's creator to simplify Baculum features that they could be used not only by users with strong Bacula skills but also by beginners or intermediate users.

## Installation

The easiest way of installing and updating Bacularis is using Composer for that.

If you don't have Composer installed, you can use the following commands to install it:

```
curl -s http://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
```

Once it is done, you can install Bacularis:

```
composer create-project bacularis/bacularis-app
```

At the end you need to run as the root user an install script that will set permissions for files and directories and also that will prepare the web server configuration file:

```
bacularis-app/protected/tools/install.sh
```

## Upgrade

To upgrade Bacularis you need to run the following command in the Bacularis project directory:

```
composer update
```

## Documentation

Bacularis documentation is available here: https://bacularis.app/doc/

Bacularis API documentation you can find here: https://bacularis.app/api/

## Live Demo

If you would like to try Bacularis before installing it, you can try live demo available at the following address:

https://demo.bacularis.app

## Project homepage

The project main page is https://bacularis.app

0 comments on commit a17ebd5

Please sign in to comment.