Laravel Makefiles Course

preview_player
Показать описание
In this course, were going to learn how to build Makefiles.

A common problem you will always face when working on any project, is how to build and work with your project.

By using Makefiles, you can forever change how you build your projects. Stop wasting time running your commands manually. Its not efficient. Today you might remember all the commands you need to build your project. Few months down the road you will forget all of them.

For this course, we will be using docker. If you’re not using Docker, you can still follow along. The important part is for you to know how to create make commands.

If your completely new to Docker, I highly recommend you watch my other videos relating to building docker for Laravel.

Course Material Links

Follow us

Chapters
0:00 Intro
0:53 Demo
2:42 Installing Make
3:26 Project Setup
4:40 Building Makefile Targets & PHONY
Рекомендации по теме
Комментарии
Автор

como llego a laravel-docker-example [WSL: Ubuntu] ??? tengo instalado Docker en mi notebook

claudiorigollet
Автор

Thats Awesome ....
Thanks for that
A question, on my makefile i use something like this:

.PHONY: company/banner
dev/banner: ## Print banner

So, because the slash on command "dev/banner" your autogenerate doesn't work
I'm not good with awk or regex, have any chance do you help-me ?

GustavoFilgueiras