Axum + PostgreSQL: Persist to-dos in postgres using SQLx

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 พ.ย. 2024

ความคิดเห็น • 9

  • @nutnut6244
    @nutnut6244 หลายเดือนก่อน

    This is so cool. Thank you so much.

    • @lindblomdev
      @lindblomdev  หลายเดือนก่อน

      Thanks for watching :)

  • @jefriaritambunan2796
    @jefriaritambunan2796 4 หลายเดือนก่อน +1

    Great teching rust video dude. I am waiting you add the login and register too for this one 😂

    • @lindblomdev
      @lindblomdev  4 หลายเดือนก่อน +1

      haha ey, im working on it. Need to write the article first 🙈

  • @joshuarowe8410
    @joshuarowe8410 หลายเดือนก่อน

    I think the docker run command needs -p 5432:5432, or at least mine did.

    • @lindblomdev
      @lindblomdev  หลายเดือนก่อน

      Yeah one need to map the inside port to the outside port to reach it. Sorry for being unclear and thanks for clarifying 👊

  • @irlshrek
    @irlshrek 4 หลายเดือนก่อน +1

    Is there a meaningful difference between using dotenvy and just adding .cargo/config.toml with an [env] section?

    • @lindblomdev
      @lindblomdev  4 หลายเดือนก่อน +1

      i have never used the env section in cargo. I just use .env files as its what i am used to, and they work the same way across the programming languages i work with day to day (js, c# and rust). One thing i can think of where .env probably has an advantage is for local overrides or additions. Then you can wire up .env.local and have it be ignored by version control. That way, you or your team mates, dont accidentally check in your personal development settings.