Ways to Clear a Clogged Kitchen Sink

You can use a plunger to clear a clogged kitchen sink. But you can also try other methods. If you don’t want to use the plunger, you can try using a wire coat hanger. This will work to break up…

Smartphone

独家优惠奖金 100% 高达 1 BTC + 180 免费旋转




Putting a Laravel app into production

When tinkering around with Laravel you usually won’t think about some practical considerations you should watch out for, when developing an application that will go live one day. I recently put a Laravel-written web application into production and I wish there was an article like this one that tells me about things I should do or use to make my life much easier.

Also — I’ve recently started a whole “Laravel in production” series. It starts off with an article about Laravel’s built-in rate limiting features and why you should consider putting the rate limiting on the edge of your web-server stack (e.g. at your load balancer).

You may have heard of those terms “Continuous Integration” and “Continuous Deployment”. Let me outline why this is going to speed up your deployment process up.

When going live with your production-ready Laravel app you are (hopefully) utilising Laravel’s awesome testing functions to make sure everything works as expected. By writing unit and integration tests for your application you’ll raise your code’s quality and lower the risk of malfunctions or security leaks. So if you are not writing tests, yet — start right now.

Continuous Integration (CI) will take your code when you push it to your version control system ( → e.g Git) and will execute all your tests in a pre-defined build environment to make sure everything is working as expected, not only on your development machine but also in a clear production-alike environment.

You may not only execute phpunit tests but also run every other toolchain on your code that may detect errors or unwanted behavior. When…

Add a comment

Related posts:

A Gift For Your Grad

Graduation season is nearly here. As parents, high school and college graduation is a time for relief; that both you and your kid(s) made it. They are both milestones, turning points where we see our…

This might be the worst habit for an Actor

Acting is one of the oldest professions in the history of man. It is a profession that has changed very little over thousands of years. Technology has changed for sure. Theatre architecture has…