Learn How to Deploy Flask APP (Docker) to ECS and Have Custom Domain |Route 53| Demo & Code

Поделиться
HTML-код
  • Опубликовано: 22 авг 2024
  • Flask API with Swagger UI:
    github.com/sou...
    ------Watch More----
    AWS Multi Region Applications
    • AWS Multi Region Appli...
    Learn About Serverless Framework
    • Learn About Serverless...
    AWS Step Functions
    • AWS Step Functions
    Title: FlaskRestful + Swagger UI + Docker Compose + Unit Test | How to organize Python Code for REST API
    Link: • FlaskRestful + Swagger...
    Title: Learn How to Deploy Flask or Docker Container on AWS ECS and ECR Tutorials
    Link: • Learn How to Deploy Fl...
    Title: Learn How to Deploy Flask APP (Docker) to ECS and Have Custom Domain |Route 53| Demo & Code
    Link: • Learn How to Deploy Fl...
    -------- Connect With Me ---------------------------------
    Website : soumilshah.her...
    Github : github.com/sou...
    Linkedin : / shah-soumil
    Blog : soumilshah1995...
    RUclips : / @soumilshah
    Donate Me : www.paypal.com...
    ----------------------------------
    #python #webdeveloper #php #software #softwaredeveloper #computerscience #tech #webdesign #computer #technology
    #programmer #programming #coding #developer #code #coder #programmingofficial #meme #java #javascript
    #coder #developer #devops #sysadmin #programmer #geek #engineer #gamer #nerd #entrepreneur

Комментарии • 13

  • @dotruongq
    @dotruongq 11 месяцев назад +1

    Great Video, where can I find the next video that you mentioned about ALB ?

  • @user-ls1bq3sk2n
    @user-ls1bq3sk2n 10 месяцев назад +1

    Dude is this a tutorial or a race ?
    We are here to learn but we can't see anything

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

      Click settings button and slow it down to .5 speed

  • @valentineejakpomewhe4352
    @valentineejakpomewhe4352 3 месяца назад +1

    how did you add ssl

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

    How did the traffic correctly going to the port 8080 ?

    • @brazenbull36
      @brazenbull36 8 месяцев назад +1

      pause at the port mapping part

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

    you don't explain enough. all the options on aws. just speed run through it.

  • @apoorvamishra3404
    @apoorvamishra3404 2 года назад

    Hi soumil need your help ... there are few queries I have ... if I have aws rabbitmq instance and want to use it in flask app .... but the trick is I have enviornment variables for it in gitlab pipeline which I need to fetch. I am getting Pika Exception.... could you please suggest some solution.
    My second question is ... I want to monitor my flask app on prometheus and see the logs in grafana ... any suggestion on that?
    Thanks in advance!

    • @SoumilShah
      @SoumilShah  2 года назад +1

      For second part
      I will make a tutorial for you soon
      I would say ddog does same thing but yes I will make some videos on Grafana
      First part not really sure I do understand problem

    • @apoorvamishra3404
      @apoorvamishra3404 2 года назад

      @@SoumilShah Thanks for the reply ! Eagerly waiting for that video!
      Just one more question ...like in earlier video you have enviornments like dev , qa ... let's say I have rabbitmq server credentials different for different enviornment (dev , qa) .. so how can I fetch those variables . I have tried os.getenv , os.environ ....but it is only able to fetch variables from non environment specific configuration.

    • @SoumilShah
      @SoumilShah  2 года назад +1

      @@apoorvamishra3404 well you have to make sure you are passing those credentials to docker or if stored in gitlab it needs to pass to instance
      In code you say os.getenv and you need a library called env if you are loading a file
      Look into dotenv

    • @apoorvamishra3404
      @apoorvamishra3404 2 года назад

      @@SoumilShah ohh thanks! 😊