Xibo - Digital Signage - http://www.xibo.org.uk Copyright (C) 2006-2018 Spring Signage Ltd and Contributors.
This is the development branch and represents the next generation of the Xibo CMS.
Xibo is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.
Xibo is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with Xibo. If not, see http://www.gnu.org/licenses/.
Installing an official release is described in the manual and in the official release notes of each release.
Please only install a Development environment if you intend make code changes to Xibo. Installing from the repository is not suitable for a production installation.
Xibo uses Docker to ensure all contributers have a repeatable development environment which is easy to get up and running.
The very same Docker containers are used in our recommended end user installation to promote consistency from development to deployment.
To these ends this repository includes a docker-compose.yml
file to spin up a model development environment.
The development Docker containers do not automatically build vendor files for PHP or JS, this is left as a developer responsibility. Therefore you will need the following tools:
- Git
- Composer
- NPM (coming in 2.0)
- Docker
Create a folder in your development workspace and clone the repository. If you intend to make changes and submit pull requests please Fork us first and create a new branch.
git clone [email protected]:<your_id>/xibo-cms.git xibo-cms
Change into your new folder
cd xibo-cms
Install the external dependencies with Composer. Your local machine is unlikely to have the necessary dependencies to install the packages, hence the --ignore
switch.
php composer.phar install --ignore-platform-reqs
Use Docker Compose to bring up the containers.
docker-compose up --build -d
This will create a model installation with a DB container holding the cms
database, mapped to external port 3315, a XMR container and a WEB container which maps the working directory into /var/www/cms
, which is inturn served by Apache.
Editing files in your favourite editor on your host file system will cause them to be updated inside the web container.
Your database is persisted in /containers/db
and will survive reboots, etc.
To find out more about the application code and how everything fits together, please refer to the advanced section of the manual.
The standard licence for Xibo is the AGPLv3. For more information please see CONTRIBUTING.md.
Support requests can be reported on the Xibo Community Forum. Verified, re-producable bugs with this repository can be reported in the Xibo parent repository.