Compare commits

...

7 Commits

Author SHA1 Message Date
mathieu efed281312 Merge pull request 'Allow devs to directly open profiler links in php storm IDE' (#2) from skeleton/phpstorm-dev-integration into main
Reviewed-on: #2
2023-03-08 15:46:30 +00:00
Mathieu Jaumotte a6a988a33a Merge remote-tracking branch 'origin/config-chill-budget' into main 2023-03-08 16:42:56 +01:00
Mathieu Jaumotte 859eb37526 Merge remote-tracking branch 'origin/main' into main 2023-03-08 16:07:55 +01:00
Mathieu Jaumotte b55914e40f add a generic .ignore directory 2023-03-08 10:45:52 +01:00
Mathieu Jaumotte 7f1085d2c2 DX: add dev config for profiler <-> phpstorm links integration 2023-03-08 10:29:07 +01:00
Lucas Silva b81638eda9 Fix error credit 2023-03-07 15:06:15 +01:00
julielenaerts 1ef5ef50a3 update composer files
continuous-integration/drone/tag Build is passing
2023-02-03 09:56:15 +01:00
4 changed files with 12 additions and 2 deletions
+2
View File
@@ -11,3 +11,5 @@ MAILER_URL=smtp://smtp:1025
PGADMIN_DEFAULT_EMAIL=admin@chill.social PGADMIN_DEFAULT_EMAIL=admin@chill.social
PGADMIN_DEFAULT_PASSWORD=password PGADMIN_DEFAULT_PASSWORD=password
## Phpstorm IDE project path
PROJECT_DIR=
+3 -1
View File
@@ -9,6 +9,7 @@ config/secrets/
## env files ## env files
.env.local .env.local
.env.dev.local
.composer/* .composer/*
composer.phar composer.phar
@@ -49,17 +50,18 @@ phpunit.xml
nbproject/* nbproject/*
.idea .idea
.ignore
### template/api/specs.yaml should be compiled ### template/api/specs.yaml should be compiled
templates/api/specs.yaml templates/api/specs.yaml
###> symfony/webpack-encore-bundle ### ###> symfony/webpack-encore-bundle ###
/node_modules/ /node_modules/
/public/build/ /public/build/
npm-debug.log npm-debug.log
yarn-error.log yarn-error.log
###< symfony/webpack-encore-bundle ### ###< symfony/webpack-encore-bundle ###
###> symfony/phpunit-bridge ### ###> symfony/phpunit-bridge ###
.phpunit .phpunit
.phpunit.result.cache .phpunit.result.cache
-1
View File
@@ -56,7 +56,6 @@ chill_budget:
- { key: mutuelle, labels: [{lang: fr, label: "Mutuelle"}]} - { key: mutuelle, labels: [{lang: fr, label: "Mutuelle"}]}
- { key: transport, labels: [{lang: fr, label: "Frais de transport"}]} - { key: transport, labels: [{lang: fr, label: "Frais de transport"}]}
- { key: decouvbank, labels: [{lang: fr, label: "Découvert bancaire utilisé"}]} - { key: decouvbank, labels: [{lang: fr, label: "Découvert bancaire utilisé"}]}
- { key: credit, labels: [{lang: fr, label: "Procédure de saisie"}]}
- { key: procsaisie, labels: [{lang: fr, label: "Procédure de saisie"}]} - { key: procsaisie, labels: [{lang: fr, label: "Procédure de saisie"}]}
- { key: indus, labels: [{lang: fr, label: "Indus"}]} - { key: indus, labels: [{lang: fr, label: "Indus"}]}
- { key: apurement, labels: [{lang: fr, label: "Plan d'apurement"}]} - { key: apurement, labels: [{lang: fr, label: "Plan d'apurement"}]}
+7
View File
@@ -3,3 +3,10 @@ framework:
# allow to debug from ngrok, useful for webhooks coming from outside: # allow to debug from ngrok, useful for webhooks coming from outside:
- '^(.+\.)?ngrok\.io$' - '^(.+\.)?ngrok\.io$'
- 'nginx' - 'nginx'
## Open files in phpstorm IDE from profiler links
# ref: https://symfony.com/doc/current/reference/configuration/framework.html#ide
# need: https://github.com/sanduhrs/phpstorm-url-handler/blob/master/phpstorm-url-handler
# set var in file .env.dev.local (PROJECT_DIR=<relative path from home folder>)
ide: 'phpstorm://open?file=%%f&line=%%l&/var/www/app/>%env(resolve:PROJECT_DIR)%'