Your favourite christian music hub
Before you go ahead, make sure you have docker, docker-compose and composer installed on your machine
git clone https://github.com/reiosantos/baraka.git
Running with docker compose:
Make sure no service is running on port 8000 and 3306
cd baraka
docker-compose up
Access the site on https://localhost:8000 Or the admin site on https://localhost:8000/admin
If run without docker-compose, you need to provide the following environment variables
APP_DEBUG
DB_HOST
DB_USERNAME
DB_PASSWORD
DB_DATABASE
If run without usimg docker compose, you need to install composer dependencies with
composer install
composer dump-autoload -o
Migrate tables
docker exec -it baraka-app bash
./vendor/bin/doctrine-migrations migrations:migrate
To run this directly on the apache server's root /var/www/html/
, You only ned to copy the
contents of the baraka folder to the web root folder.
cp baraka/* /var/www/html/
You can then access the site on http://localhost/