Deploying a Go App to Ubuntu 22.04 in only 18 minutes! (Go/Postgresql/Nginx/System.d)

Поделиться
HTML-код
  • Опубликовано: 12 дек 2024

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

  • @ali-ozen
    @ali-ozen 11 месяцев назад +2

    Best tutorial video I have ever seen. Simple and full of information.

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

    Thank you so much. This is the best step by step tutorial for me. Im using supervisor before this, but it always fail. Using debian default service similar in this tutorial work smoothly.

  • @alessandroscimone5463
    @alessandroscimone5463 2 года назад +2

    just what I was looking for. Good

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

    Amazing video, exactly what I needed! Thank you!

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

    Thanks a lot, short and efficient tutorial!

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

    of so much value, appreciated!

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

    Thank you Mr.Robby

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

    You should probably add systemctl enabled command also so after restart systemd will start your app again

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

    Informative. Thank you.

  • @metecank
    @metecank 2 года назад +2

    Oh, thanks for this awesome content! Could you share your vscode icon theme with us?

    • @codingwithrobby
      @codingwithrobby  2 года назад +2

      Hey there, it's an extension called "vscode-icons"

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

      @@codingwithrobby Thanksss

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

    Thanks man!

  • @ani-xu7jm
    @ani-xu7jm Год назад +1

    Why did you install go on deployment server? You could just compile and move only compiled code to deployment server.

    • @TheKorike2009
      @TheKorike2009 Год назад +1

      Es posible pasar solo el ejecutable de una aplicación Go a un servidor y ejecutarlo allí sin instalar Go en el servidor. Sin embargo, si planea desarrollar una aplicación Go en el servidor o ejecutar varias aplicaciones Go en el servidor, instalar Go en el servidor es la opción más adecuada.
      Instalar Go en el servidor significa que puede compilar y ejecutar aplicaciones Go en el servidor directamente sin la necesidad de compilarlas en otra máquina y luego transferirlas al servidor. Además, instalar Go también le permite actualizar a la última versión de Go y utilizar las últimas características del lenguaje Go.
      Otra razón para instalar Go en el servidor es que muchos paquetes y bibliotecas Go de terceros se instalan como módulos de Go. Si desea utilizar estos paquetes y bibliotecas en su aplicación, debe instalar Go en el servidor.
      En resumen, si solo necesita ejecutar una única aplicación Go en el servidor, puede pasar solo el ejecutable. Sin embargo, si planea desarrollar o ejecutar varias aplicaciones Go en el servidor, instalar Go en el servidor es una mejor opción.

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

    How can I map ip address with domain ?, Please make a video in this topic

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

    thank you.

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

    Hi sir, can you please share me the project code. Thank you!

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

    Good video. Do you use Go professionally?

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

      Glad you enjoyed it! I have, but not as much as I'd like to.

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

    nice video. How to redeploy the app after made some change?

  • @GmanGavin1
    @GmanGavin1 Год назад +1

    Hey, You know Windows 10 and Windows 11 have openSSH. You can build SSH key in the terminal with nothing special.

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

    ❤ very good

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

    Epic...

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

    so, why use Nginx ?

    • @CruciformCoding
      @CruciformCoding 7 месяцев назад +1

      I think one major reason is that if you have multiple sites on your server, you’ll want your go apps to serve on different ports internally, and NGinX to act as a reverse proxy to turn :80 traffic into, say, :5000 traffic internally.

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

    Why use nginx? Is it not recommended to use gin directly?

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

    💙