qaniel

Results 4 comments of qaniel

Hello fellow Coder! Sadly it's not specified during the local docker installations but you need to have an existing mageroot/app/etc/env.php during the installation process. There you should add a crypt...

AFAIK this happens cuz docker + developer mode + local environment + 0 caches. So, there are only 2 workarounds for this 1. Update the Nginx timeout 2. Turn all...

Look at the warnings ![Screen Shot 2021-02-22 at 17 26 49](https://user-images.githubusercontent.com/26260746/108783586-5a146500-7533-11eb-80f7-33cc247971fe.png) Create those directories and the issue goes awaaaaay 👻

you can fetch it after a successful auth: ``` dart final result = await authenticator.login(refreshIfAvailable: true); result.fold( (failure) => throw Exception(failure.message), (token) => token.refreshToken ); ```