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.
|
|
4 mesi fa | |
|---|---|---|
| .. | ||
| bin | 4 mesi fa | |
| config | 4 mesi fa | |
| dockerfiles | 4 mesi fa | |
| jixel-background-task-handler | 4 mesi fa | |
| plugins | 4 mesi fa | |
| resources | 4 mesi fa | |
| src | 4 mesi fa | |
| templates | 4 mesi fa | |
| tests | 4 mesi fa | |
| webroot | 4 mesi fa | |
| .htaccess | 4 mesi fa | |
| Dockerfile | 4 mesi fa | |
| README.md | 4 mesi fa | |
| composer.json | 4 mesi fa | |
| composer.lock | 4 mesi fa | |
| index.php | 4 mesi fa | |
| phpcs.xml | 4 mesi fa | |
| phpstan.neon | 4 mesi fa | |
| phpunit.xml.dist | 4 mesi fa | |
| psalm.xml | 4 mesi fa | |
README.md
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