Hanie Asemi
Hanie Asemi
  • Видео 11
  • Просмотров 74 351
Efficient Queue Management with Laravel, Redis, and Docker | Complete Guide
Learn how to run a long-time process in the background by implementing the queue management system in Laravel using Redis, and Docker in this comprehensive tutorial. We'll cover everything from setting up Redis with Docker to integrating it with Laravel for seamless queue management.
#laravel #queues #docker #redis
▬▬▬▬▬▬ GitHub ▬▬▬▬▬▬
github.com/hanieas
▬▬▬▬▬▬ Setup Laravel with Docker 🎥 ▬▬▬▬▬▬
ruclips.net/video/6ANYowpB910/видео.html
Просмотров: 3 769

Видео

Elasticsearch + Kibana + Docker with Example
Просмотров 1,3 тыс.Год назад
Install Elasticsearch with Docker | Elasticsearch | Kibana | Docker | Test Elasticsearch with Postman #elasticsearch #docker #kibana #postman You'll learn Elasticsearch just in 10 minutes. After watching this video you'll know how Elasticsearch works, you'll install Elasticsearch with docker and you can build an index and query it by simply making a REST API call through Postman. ▬▬▬▬▬▬ Connect...
Microservices Architecture Zero to Hero with Implementation using Laravel and RabbitMQ | Part 2
Просмотров 4,7 тыс.Год назад
Microservices Architecture | Monolithic vs Microservices Architecture | Connect Microservices to each other | Message Broker | RabbitMQ #microservices #laravel #rabbitmq In this video, you will learn all you need to know about Microservices and also implement a real example using the Laravel framework. First, I will start with the definition of microservices architecture and talk about the diff...
Microservices Architecture Zero to Hero with Implementation using Laravel and RabbitMQ | Part 1
Просмотров 10 тыс.Год назад
Microservices Architecture | Monolithic vs Microservices Architecture | Connect Microservices to each other | Message Broker | RabbitMQ #microservices #laravel #rabbitmq In this video, you will learn all you need to know about Microservices and also implement a real example using the Laravel framework. First, I will start with the definition of microservices architecture and talk about the diff...
Make Your Code Clean and Readable with Repository Design Pattern
Просмотров 7292 года назад
In this video, I've explained how to implement the repository design pattern in the Laravel framework and shown you how this can help you have clean and readable code. #laravel #repository #cleancode ☘️☘️ I'll appreciate it if you leave me a comment and share your thought with me.☘️☘️ Setting Up Laravel with Docker: ruclips.net/video/6ANYowpB910/видео.html GitHub Repository: github.com/hanieas/...
Implement Laravel with Docker and PostgreSQL as database
Просмотров 10 тыс.2 года назад
In the previous video: ruclips.net/video/6ANYowpB910/видео.html we've implemented Laravel with Docker and MySQL database. In this tutorial, you're going to use PostgreSQL with Laravel and implement the project with Docker Compose. #docker #dockercompose #laravel #postgresql #nginx #pgadmin ▬▬▬▬▬▬ Read about this video ▬▬▬▬▬▬ GitHub: github.com/hanieas/Docker-Laravel ▬▬▬▬▬▬ Other videos from my ...
Install and Set Up Laravel with Docker Compose
Просмотров 41 тыс.2 года назад
In this video, we’re going to set up Laravel in the local environment with Docker using the LEMP stack that includes: Nginx, MySQL, PHP, and phpMyAdmin. #docker #dockercompose #laravel #mysql #nginx #phpmyadmin ▬▬▬▬▬▬ Read about this video ▬▬▬▬▬▬ GitHub: github.com/hanieas/Docker-Laravel Medium: medium.com/@hanieasemi/setting-up-a-laravel-local-environment-with-docker-7541ae170daf ▬▬▬▬▬▬ Other ...
Hello YouTube | I'm Hanie
Просмотров 6032 года назад
This video introduces me and explains the purpose of this channel. I look forward to hearing from you and seeing what you would like to know more about. Subscribe to this channel to learn new programming technologies every week.
Laravel 8 CRUD Tutorial with Creating Book Store API | Beginners
Просмотров 2,4 тыс.3 года назад
In this video, we will implement a simple book store application API using Laravel 8 CRUD operation. You will get familiar with one-to-many and many-to-many relationship in Laravel. There is a link of Medium article: medium.com/p/book-store-api-using-laravel-5f2d7ae9f0fb And if you want to skip this video and this article you can find the whole code in this respository: github.com/hanieas/Tutor...

Комментарии

  • @coolcha
    @coolcha 14 дней назад

    Thank you .. this is a very useful video.

  • @guilhermetorres3000
    @guilhermetorres3000 Месяц назад

    Thanks! I was searching for this for a long time, It's dificult to see a pratical video installing Laravel without Sail

  • @PhearunReth-c3s
    @PhearunReth-c3s Месяц назад

    It is the best video. Please kindly make a new video on Microservices Architecture Zero to Hero with Implementation using Laravel and Redis

    • @hanieasemi
      @hanieasemi Месяц назад

      Thanks for watching and for your suggestion! I will consider it for my future videos.

  • @akeemsalami1854
    @akeemsalami1854 2 месяца назад

    Great tutorial. Well done.

  • @akeemsalami1854
    @akeemsalami1854 2 месяца назад

    Wow! This tutorial is brief and highly informative. Well done.

  • @MohmedAhmed-gt2vk
    @MohmedAhmed-gt2vk 3 месяца назад

    greate tutorial keep up

  • @MohammadSalehnia
    @MohammadSalehnia 3 месяца назад

    Thanks, it was great

  • @neletasic
    @neletasic 3 месяца назад

    Would someone share the code? Thanks in advance.

  • @anastasiasomeone5325
    @anastasiasomeone5325 4 месяца назад

    Very clear videos on subject. Thank you!

  • @anastasiasomeone5325
    @anastasiasomeone5325 4 месяца назад

    Thank you! Many theoretical techniques became much more clear to me from your example.

  • @jesusleguiza77
    @jesusleguiza77 4 месяца назад

    Hi, I want to do something like DevOps and I don't have the vendor folder in the project. In the image, I need to run "composer install," but it seems like the nginx container will also need this command. Is that right? Cheers!

    • @hanieasemi
      @hanieasemi 4 месяца назад

      Hi, You need to run this command inside the application container, for example if you're container name is app go inside this container: docker compose exec app bash Then run composer install. Nginx is just a web server it doesn't need this command. This is just for installing packages. Check this link out:getcomposer.org/doc/00-intro.md

    • @jesusleguiza77
      @jesusleguiza77 4 месяца назад

      @@hanieasemi thanks you, other thing, I have index.php in root folder, not in public, and nginx set path to public

  • @BorisPZ
    @BorisPZ 5 месяцев назад

    Very useful video. I would recommend you to notify user that video is downloading while job works and after job was done send client success message.

  • @alleneben5715
    @alleneben5715 5 месяцев назад

    Why did you skip some steps.

    • @hanieasemi
      @hanieasemi 5 месяцев назад

      What steps would you like to explain? I can make another video.

    • @alleneben5715
      @alleneben5715 5 месяцев назад

      @@hanieasemi I did not see the php and laravel setup in the video

  • @kinvain
    @kinvain 5 месяцев назад

    Sorry for the off topic. The dark theme could be your personal choice. But the light is way better for steaming videos.

  • @kevinmc24
    @kevinmc24 5 месяцев назад

    link de la empresa pa postular xd

  • @kevinmc24
    @kevinmc24 6 месяцев назад

    🤩🤩🤩🤩🤩🤩

  • @Omeostatica
    @Omeostatica 7 месяцев назад

    Why don't you use the same base of code for all microservices?

  • @ariamustofa
    @ariamustofa 7 месяцев назад

    Nice @hanieasemi

  • @ariamustofa
    @ariamustofa 7 месяцев назад

    awesome 😺

  • @kevinmc24
    @kevinmc24 7 месяцев назад

    repo ?

  • @тв788о-л9ы
    @тв788о-л9ы 7 месяцев назад

    Hello, Honey! you can try how to use Docker, Laravel and RabbitMQ and find a job for this QUEUE_CONNECTION=rabbitmq. I tried to connect it through docker no, the connection to the [rabbitmq] queue is not configured. Select QUEUE_CONNECTION=database or QUEUE_CONNECTION=it's ok. Thank you very much in advance

  • @Моргенштерн-о4ь
    @Моргенштерн-о4ь 7 месяцев назад

    быстро работает)

  • @amir_p_dev
    @amir_p_dev 7 месяцев назад

    Cool!😀

  • @biniamin2341
    @biniamin2341 8 месяцев назад

    Its a mind blowing tutorial.

  • @aysegulbulut40
    @aysegulbulut40 8 месяцев назад

    Hello, you did not create a docker file, I am getting an error about this. I will use mysql, when I followed your steps, the container was not created, can you help me?

    • @hanieasemi
      @hanieasemi 8 месяцев назад

      Hi, did you check the GitHub repo? You can find the Dockerfile here: github.com/hanieas/Docker-Laravel Let me know if you have any problem

  • @emmamfinanga2307
    @emmamfinanga2307 9 месяцев назад

    Do you MS which communicate with API request instead RabbitMq in laravel ?

  • @magosimediahub1503
    @magosimediahub1503 9 месяцев назад

    where can i find the git repo link

    • @hanieasemi
      @hanieasemi 9 месяцев назад

      Unfortunately, this video has not Git repo.

    • @magosimediahub1503
      @magosimediahub1503 9 месяцев назад

      @@hanieasemi okay thanks managed on what was giving me the issue

  • @murilolivorato1489
    @murilolivorato1489 9 месяцев назад

    very nice

  • @ebrahem-dev
    @ebrahem-dev 9 месяцев назад

    your video is incomplete!

    • @hanieasemi
      @hanieasemi 9 месяцев назад

      What can I do to complete the video?

  • @bartukocakara7794
    @bartukocakara7794 9 месяцев назад

    Great job !

  • @jeannep8378
    @jeannep8378 10 месяцев назад

    does this still work today?

  • @KasunPrabath-ye8ug
    @KasunPrabath-ye8ug 10 месяцев назад

    Thanks for your valuble lessions Hanie

    • @hanieasemi
      @hanieasemi 9 месяцев назад

      Thanks for watching!

  • @skygnd
    @skygnd 10 месяцев назад

    Thanks Hanie, thanks to your tutorial series I have a good understanding of the concept of microservice communication in Laravel.

  • @ariog.iswahyudi5243
    @ariog.iswahyudi5243 10 месяцев назад

    did you have installed php & composer natively alongside docker ? it's look laravel has running well before binding to docker volume

    • @hanieasemi
      @hanieasemi 10 месяцев назад

      Sorry I didn't get your question. Could you please explain it more?

  • @eugenelviv7490
    @eugenelviv7490 10 месяцев назад

    Hello. Thank you for this videos. As I understood, microservice can send request throw RabbitMq, but I will not have responce, do I right? RabbitMq can send data, second service works with this data, but first service can't get responce back? Throw events only in one way, without responce? How can I get responce, should I use Http request direclty from first to second service?

    • @hanieasemi
      @hanieasemi 9 месяцев назад

      Check this link it may help you: www.rabbitmq.com/tutorials

  • @ManhNguyen-ik8kl
    @ManhNguyen-ik8kl 11 месяцев назад

    thanks :D. Please make more videos about this topics

    • @hanieasemi
      @hanieasemi 9 месяцев назад

      Thanks for watching! Could you please tell me which topics are you more interested?

  • @seyranselimov6694
    @seyranselimov6694 11 месяцев назад

    Could you create video about install supervisor to docker?

    • @hanieasemi
      @hanieasemi 11 месяцев назад

      Thanks for watching, Sure I'll consider it.

  • @fabiobetancourt5662
    @fabiobetancourt5662 11 месяцев назад

    Your videos save me, thank you so much for sharing your knowledge with us.

  • @isururanawaka5839
    @isururanawaka5839 Год назад

    Been searching for a good tutorial. thanks for this.

    • @hanieasemi
      @hanieasemi 9 месяцев назад

      Glad you liked it

  • @aleksandarsavanovic4746
    @aleksandarsavanovic4746 Год назад

    Thank you, but can you please tell us how can we dockerize apps thath are cloned from git , we need to do composer install, i was unabel to do thath true docker for my laravel 5.8 app thath is using composer v1?

    • @hanieasemi
      @hanieasemi 9 месяцев назад

      It doesn't matter where did you get the project. You can create a docker-compose file and a Dockerfile which you can define php version in this file.

  • @bboydarknesz
    @bboydarknesz Год назад

    Great! Make it more advanced.. like pausing, delete a job, horizon, etc

    • @maxralph01
      @maxralph01 10 месяцев назад

      Easy, bro. Not many ladies code. She's doing great!

    • @hanieasemi
      @hanieasemi 9 месяцев назад

      Thanks for the tip!

  • @artemunix5223
    @artemunix5223 Год назад

    show how to make microservices through a laravel passport

  • @rootraiz8108
    @rootraiz8108 Год назад

    Hi,keep it up,thanks to share.you can't stop

    • @hanieasemi
      @hanieasemi 9 месяцев назад

      Thank you, I will

  • @midgardresident
    @midgardresident Год назад

    Hello from Russia. Hope your channel will grow. Good luck!

  • @midgardresident
    @midgardresident Год назад

    very good, keep going

  • @imranlashari6578
    @imranlashari6578 Год назад

    why ngnix?

  • @mithunhalder8803
    @mithunhalder8803 Год назад

    Could you please share code

    • @hanieasemi
      @hanieasemi 9 месяцев назад

      Unfortunately, this doesn't have GitHub repo. Could you create a repository for this video? We can work on it.

  • @bhanukaanjana1963
    @bhanukaanjana1963 Год назад

    ❤❤❤

  • @idinhabibi3189
    @idinhabibi3189 Год назад

    perfect👍