Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

1.4 KiB

IDROCAP Jixel repository

Jixel core for IDROCAP developing. Based on CakePHP 5.x.

The framework source code can be found here: cakephp/cakephp.

Before you run the docker stack: make sure you have a few configs keys under in config/app_local.php:

    'Custom' => [
		'background_tasks' => [
			'notifications' => [
				'channel' => 'newjixel_background_tasks',
			]
		],
    ],

and:

    '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 <USERNAME> jixel

install vendor packages: composer install -n

install vendor front end packages: cd webroot npm install -y bower install -y