by Michiel | Feb 22, 2019 | Composer, Laravel, Magento, Quick Tip, Tooling, Valet+
For my daily work as a freelancer i tend to use a lot of disposable environments: I use them to check a bug in that specific version for example, and them throw them away. Setting up Magento can be a lengthy process, but with this one liner i can bring it down to ~10...
by Michiel | Jan 16, 2019 | Magento, Quick Tip, Uncategorized
When people share their workflow/tools i love to read them as it gives me the option to improve mine. I think i currently have a pretty decent workflow which allows me to develop faster than ever. I wanted to share this flow with you so everyone can use it. Overview...
by Michiel | Jan 14, 2019 | Direct Admin, nginx, Quick Tip
I always forget how to redirect a domain from http -> https when i’m in Direct Admin. It is pretty easy: |*if SSL_TEMPLATE=”0″| return 301 https://|DOMAIN|$request_uri; |*endif| Login as admin, go to Custom HTTPD Configurations, find your domain and...
by Michiel | Dec 20, 2018 | Continues Deployment, Quick Tip
So in my day to day development i like to use continues deployment for every project where i can. Continues deployment means that everytime i push a commit to master the latest version of master will automatically be deployed to my production environment. This makes...
by Michiel | Sep 14, 2017 | Laravel, Quick Tip
In Laravel you can set your environment specific variables by using the .env file. In the application you can then easily retrieve the variable by using the env(‘VARIABLE_NAME’) function.This file is not be meant to be added to git. This way you can a...
by Michiel | Jun 21, 2017 | Laravel, Quick Tip
Since a few years everyone seems to be using Laravel for about everything. That is completely understandable, as it provides some great features. The only downside is that when there is a (security) bug this is easily exploited. Sites and plugins like Wappalyzer...