# IDROCAP Jixel repository Jixel core for IDROCAP developing. Based on [CakePHP](https://cakephp.org) 5.x. The framework source code can be found here: [cakephp/cakephp](https://github.com/cakephp/cakephp). Before you run the docker stack: make sure you have a few configs keys under in `config/app_local.php`: ```php 'Custom' => [ 'background_tasks' => [ 'notifications' => [ 'channel' => 'newjixel_background_tasks', ] ], ], ``` and: ```php 'Datasources' => [ 'default' => [ 'host' => 'mysql8', 'username' => 'jixel', 'password' => 'jixel2023', 'database' => 'jixel', 'url' => env('DATABASE_URL', null), ], 'geo' => [ 'host' => 'mysql-geo', 'port' => '3307', 'username' => 'gecos', 'password' => 'gecos2015', 'database' => 'geo', ], 'test' => [ 'host' => 'localhost', 'username' => 'my_app', 'password' => 'secret', 'database' => 'test_myapp', 'url' => env('DATABASE_TEST_URL', 'sqlite://127.0.0.1/tests.sqlite'), ], ], ```` First bootstrap only (and only if you are mapping in your host machine, idrocapjixel repository): enter the container: `docker exec -it -u jixel` install vendor packages: `composer install -n` install vendor front end packages: `cd webroot` `npm install -y` `bower install -y`