In case you haven't seen it, my Laravel Docker video course is out and only $29! β¨
20 videos with full transcripts helping you learn how to:
- Create a local dev environment
- Run scheduled tasks
- Use Redis caching
- Deploy a Dockerized Laravel app
π laraveldocker.com
periodic reminder: if you're backing up your dev folder, remove node_modules first, unless you really mean to backup a bazillion stupid, tiny js files.
here's a shell script that'll do it:
`find ~/Developer -name node_modules -type d -maxdepth 2 -exec rm -rf {} +`
.@enunomaduro tried out Laravel's upcoming parallel testing feature on a 14 minute test suite... got it down to 2 minutes (!)... another suite went from 35 seconds to 9 seconds. πππ