jilo-web/README.md

76 lines
2.3 KiB
Markdown
Raw Normal View History

# Jilo Web
2024-06-28 15:03:43 +00:00
2024-07-10 16:04:50 +00:00
## overview
2024-07-10 16:07:31 +00:00
Jilo Web is a PHP web interface to **[Jilo](https://work.lindeas.com/redirect.php?url=jilo)** (JItsi Logs Observer).
2024-07-07 09:30:57 +00:00
To have a working installation, in addition to the code here you need a jilo database file, generated by Jilo.
2024-07-03 06:37:35 +00:00
2024-07-10 16:07:31 +00:00
The webpage for this project is https://lindeas.com/jilo. There you will find information about both Jilo and Jilo Web.
2024-07-10 16:04:50 +00:00
2024-07-11 11:24:45 +00:00
The main git repo of **Jilo Web** is:
2024-07-10 16:04:50 +00:00
- https://code.lindeas.com/lindeas/jilo-web
It is mirrored at:
- https://codeberg.org/lindeas/jilo-web
- https://github.com/lindeas/jilo-web
- https://gitlab.com/lindeas/jilo-web
You can use any of these git repos to get the program.
You are welcome to send feedback with issues, comments and pull requests to a git mirror you prefer.
2024-07-06 16:37:39 +00:00
## demo
To see a demo install, go to https://work.lindeas.com/jilo-web-demo/
2024-07-10 16:04:50 +00:00
## version
2024-07-25 16:10:53 +00:00
Current version: **0.1.1** released on **2024-07-25**
2024-07-10 16:04:50 +00:00
2024-07-24 14:08:13 +00:00
## license
This project is licensed under the GNU General Public License version 2 (GPL-2.0). See LICENSE file.
2024-07-25 16:51:05 +00:00
Bootstrap is used in this project and is licensed under the MIT License. See license-bootstrap file.
JQuery is used in this project and is licensed under the MIT License. See license-jquery file.
2024-07-24 14:08:13 +00:00
## requirements
- web server (deb: apache | nginx)
- php support in the web server (deb: php-fpm | libapache2-mod-php)
- pdo and pdo_sqlite support in php (deb: php-db, php-sqlite3) uncomment in php.ini: ;extension=pdo_sqlite
2024-07-10 16:04:50 +00:00
## installation
You can install it in the following ways:
- download the latest release from the **"Releases"** section here
2024-07-25 17:03:11 +00:00
```bash
tar -xzf jilo-web_*.tgz
2024-08-13 14:53:52 +00:00
cd jilo-web/doc/
2024-07-25 17:03:11 +00:00
./install.sh
```
2024-07-10 16:04:50 +00:00
- clone the **git repo**:
```bash
git clone https://github.com/lindeas/jilo-web.git
2024-07-25 16:58:14 +00:00
cd jilo-web
./install.sh
2024-07-10 16:04:50 +00:00
```
2024-07-25 16:58:14 +00:00
- DEB and RPM packages are planned, but not yet available. There are experimental build scripts in "packaging" folder.
2024-07-10 16:04:50 +00:00
## config
- edit jilo-web.conf.php and set all the variables correctly
2024-08-13 11:24:56 +00:00
- "sqlite_file" is the sqlite db file for jilo-web itself, it goes to `app/jilo-web.db`, create it with
```bash
cd app
2024-08-13 14:53:52 +00:00
cat ../doc/jilo-web.schema | sqlite3 jilo-web.db
```
- "jilo_database" is the sqlite db file for jilo, with data from the Jitsi logs
2024-07-10 16:04:50 +00:00
## database
2024-07-25 16:58:14 +00:00
The database is an SQLite file. You also need the sqlite db from jilo (mysql/mariadb support is planned, but not yet available).