Skip to content

ScottVerbeek/docker_totara

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker_totara

Requirements

  • Docker
  • Docker-compose

Usage

  1. Clone this repository
git clone git@github.com:ScottVerbeek/docker_totara.git docker_totara
  1. Clone Totara code into siteroot
cd docker_moodle
git clone git@github.com:XXX/YYY.git siteroot
  1. Copy site config across
cp totara-config siteroot/config.php
  1. Start containers
docker-compose up

Run PHPUnit tests

You will need to enter the web container with docker exec -it CONTAINER_NAME bash and then

cd ../
# Initialise PHPUnit (run once before use):
php test/phpunit/phpunit.php init
# Run all tests
php test/phpunit/phpunit.php run
# Drop database ready to re-initialise:
php test/phpunit/phpunit.php util --drop

Setup Xdebug for VS Code

Open vscode and click create a launch.json file then click PHP. VS Code will create a JSON file for you edit it to the following:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "port": 9000,
            "pathMappings": {
                "/siteroot": "${workspaceFolder}"
            }
        },
        {
            "name": "Launch currently open script",
            "type": "php",
            "request": "launch",
            "program": "${file}",
            "cwd": "${fileDirname}",
            "port": 9000
        }
    ]
}

About

A development environment for Totara using Docker.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published