PyRowMan

Results 29 comments of PyRowMan

Nice one here @milanito ! I'm working on an improvement to add more than one symfony apps. I'll be waiting for your PR to be accepted to integrate your changes...

@maxpou I did not integrated it yet for now My docker project integration is currently in hold because our work machines are lacking some RAM; but it's planned to integrate...

@maxpou I am too, i'm really tired of working with that shitty wampserver uU @milanito I haven't actually even installed the PR for now, but i have seen the commit...

@milanito Yes, you are totally right ! I'll do that as soon as I have the time to write the right issue. About that PR, I tested your branch yesterday,...

@milanito Today my environnement don't want to play I think. I was at like 1.5 sec loading time yesterday; today i'm at 17 sec loading time. But when i tested...

```.yaml parameters: database_host: db database_port: 5500 database_name: agency database_user: root database_password: pass mailer_transport: smtp mailer_host: 127.0.0.1 mailer_user: null mailer_password: null secret: ThisTokenIsNotSoSecretChangeIt ``` @mgm2030 this should work :)

I'm trying to making it work since 3 days, If you set the port binding, you'll be unable to listen it with phpstorm, so unfortunately the solution of @Selion05 doesn't...

Thank you @progonkpa I'll test that later today :)

Okay, so after testing it, it is possible to integrate the xdebug way with the PR #81 The fact that there is a fast_cgi config make it possible here is...

Or you can add a shared port to the db config in the docker-compose.yml ``` db: image: mysql:latest volumes: - "./.data/db:/var/lib/mysql" environment: MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD} MYSQL_DATABASE: ${MYSQL_DATABASE} MYSQL_USER: ${MYSQL_USER} MYSQL_PASSWORD: ${MYSQL_PASSWORD}...