Full Stack Flask, React, and Postgres, pt. 1

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ส.ค. 2024
  • Create a full stack application using Flask, PostgreSQL, and React. In this video, we'll set up our CRUD endpoints and test them using Postman.
    SQLAlchemy docs: docs.sqlalchem...

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

  • @sergiocanas383
    @sergiocanas383 ปีที่แล้ว +6

    Finally found a course that talks about all three and not just React and flask. Thank you

  • @tejasgopal6101
    @tejasgopal6101 ปีที่แล้ว +2

    Great video man! You're video was done smartly and concisely, I really appreciate it!

  • @djthedev
    @djthedev 2 ปีที่แล้ว +1

    This is the best tutorial I've found on this topic. Thanks so much Chris!

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

      Please help me, have you tried the code steps on your own?🤦‍♂🙏

  • @iFunktion
    @iFunktion ปีที่แล้ว +4

    Hi, I'm getting and error: RuntimeError: Either 'SQLALCHEMY_DATABASE_URI' or 'SQLALCHEMY_BINDS' must be set. How do you get past this?

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

      Did you ever sort this out

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

      Did you figure it out?@@bigmack13

  • @cryswerton-silva
    @cryswerton-silva 2 ปีที่แล้ว

    Thanks for the video and please keep up with the good work!

  • @jackpeterson541
    @jackpeterson541 ปีที่แล้ว +2

    why you didn't use json dump(dumps) instead define format_event function?

  • @iFunktion
    @iFunktion ปีที่แล้ว +1

    I really don't understand how you are doing this without getting errors, I am now getting :RuntimeError: Working outside of application context. How do you get round all of this?

  • @iFunktion
    @iFunktion ปีที่แล้ว +1

    How did anyone get this to work, tables won't create, error messages everywhere, this is a nightmare for a beginner tutorial

    • @ChrisDeSilva
      @ChrisDeSilva  ปีที่แล้ว

      Sounds frustrating. Hard to tell from the error messages alone without any other context. If you're just starting out, it's a great opportunity to lean on documentation. Check the Flask docs, search Stack Overflow for similar error messages, etc. It usually ends up being a small detail that got missed somewhere along the way. Super easy to do when following along with tutorials.

  • @lbb2rfarangkiinok
    @lbb2rfarangkiinok 2 ปีที่แล้ว

    Super cute project idea :)

    • @lbb2rfarangkiinok
      @lbb2rfarangkiinok 2 ปีที่แล้ว

      Also, it worked! I ended up using it for a database of my daughter's stuffed animals with images of each, and it's fantastic. All that's left is some bootstrapping and the manual labor of matching the photos.

  • @vijeandran
    @vijeandran 2 ปีที่แล้ว

    HI, Instead of printing all the columns in GET request, How could I get only specific columns from the postgres table?

    • @ChrisDeSilva
      @ChrisDeSilva  2 ปีที่แล้ว

      You'd just do SELECT {COLUMN_NAME_1}, {COLUMN_NAME_2} from TABLE instead of SELECT * from TABLE

  • @Pedro-zj3fs
    @Pedro-zj3fs 2 ปีที่แล้ว

    Good video, but i think that middleware and backend is together, is a good option to pull apart the backend from middlware, for microservices, for example :)

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

    There had an error, but was able to solve by using postgresql:// instead of postgres://. Thank you.

  • @speedbump164
    @speedbump164 2 ปีที่แล้ว

    yeah, this was a great video and a huge help. you earned a like and a sub my friend

  • @theclueless11212
    @theclueless11212 ปีที่แล้ว

    When I run POST and GET requests at localhost:5000/events, I get a 401 Unauthorized error. any ideas why?

    • @ChrisDeSilva
      @ChrisDeSilva  ปีที่แล้ว

      Tricky to diagnose without a bit more detail but are you seeing any other error messages in the console. First thing that comes to mind is that you may have a CORS issue and may have simply missed that part of the setup. Happy to try to help troubleshoot further if you have more details/questions.

  • @wtf1379
    @wtf1379 2 ปีที่แล้ว

    I'm sorry maybe I'm not understanding something but what is the purpose of having both sqlalchemy and psycopg2?
    Sqlalchemy by itself is perfectly able to handle a postgress db.

    • @ChrisDeSilva
      @ChrisDeSilva  2 ปีที่แล้ว

      This SO thread might help clear things up a bit: stackoverflow.com/questions/8588126/sqlalchemy-or-psycopg2

  • @giantqtipz6577
    @giantqtipz6577 2 ปีที่แล้ว

    subscribed.
    I went to fullstack javascript bootcamp, and used sequelize for database.
    But just got a job that uses JS, Python, and SQL. This is the course I need to get up to speed. Saving this to follow along later. Thanks!

  • @SophieWillson-qu3gu
    @SophieWillson-qu3gu ปีที่แล้ว

    This is great, I'm having an issue with my model where the 'id' and 'created_at' default value are returning "null" - when I print "event" from the formatter method it just logs my description

  • @shikhxr24
    @shikhxr24 ปีที่แล้ว

    While giving the db.create_all() for creating the 'event' table, I'm getting "Runtime error: Working outside of application context"
    The way to resolve this is using 'application context' . I went through the documentation but couldn't figure out how the code would look like for this.
    Please let me know if you could.

    • @ChrisDeSilva
      @ChrisDeSilva  ปีที่แล้ว

      Without seeing the code you've got set up, this looks like it might point you in the right direction based on that error: flask.palletsprojects.com/en/2.3.x/appcontext/

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

      You have to nest the db.create_all() inside a context block:
      with app.app_context():
      db.create_all()
      Also make sure you declare the Event class before running create_all or it won't register in the database. I have no idea why it worked for him in the python shell without adding the context block. Probably something to do with the deprecation warnings, considering the video is almost 2 years old now. Still a good tutorial that helped me with ORMS!

  • @uykerrykaberga
    @uykerrykaberga 2 ปีที่แล้ว

    great video

  • @joeniati7903
    @joeniati7903 ปีที่แล้ว

    what commands should i runto start the project

  • @deivide5374
    @deivide5374 2 ปีที่แล้ว

    can you show us how to deploy into AWS, Azure, DigitalOcean... or where ever? been having a hard time... getting front to talk to back correctly... even after building for production. Thank you

  • @manasahr430
    @manasahr430 ปีที่แล้ว

    could you please make a video on flask backend ,react frontend ,microsoft sql server database
    (stored procedure data )

  • @PilotLu
    @PilotLu 2 ปีที่แล้ว

    Great set of videos Chris...thanks!
    What theme are you using in vscode?

  • @joeniati7903
    @joeniati7903 ปีที่แล้ว

    does this use any kind of JWT token?

  • @sebastientroszczynski5371
    @sebastientroszczynski5371 2 ปีที่แล้ว

    Hi Chris,
    Thanks for your video, so cool.
    In your point of view, what is the best way to pass more than one value from the front to the back end . Like I would like to filter a table on multiple values.
    Thank you

  • @joeniati7903
    @joeniati7903 ปีที่แล้ว

    or any kind of tokens?

  • @MattVibes
    @MattVibes 2 ปีที่แล้ว +3

    So you’re keeping the baby in the parent directory? 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣

  • @joeniati7903
    @joeniati7903 ปีที่แล้ว

    This project will not start for me properly

  • @aldelta19
    @aldelta19 ปีที่แล้ว

    When you start working with these tools, the other stuff seems silly... Unless you're working for an enterprise, I guess.

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

    Githhub link?

  • @captainwalter
    @captainwalter 2 ปีที่แล้ว

    whats your font and theme?

    • @ChrisDeSilva
      @ChrisDeSilva  2 ปีที่แล้ว +1

      Victor Mono and Synthwave '84

    • @captainwalter
      @captainwalter 2 ปีที่แล้ว

      @@ChrisDeSilva thank you sir!

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

    This is a great tutorial i must be sincere, but many of found it hard to setup Python with VS code powershell, you shouls have started from how you create your folders😭