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

Поділитися
Вставка
  • Опубліковано 1 гру 2024

КОМЕНТАРІ • 46

  • @sergiocanas383
    @sergiocanas383 2 роки тому +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 Рік тому

      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 11 місяців тому

      Did you ever sort this out

    • @sagharsahebi5236
      @sagharsahebi5236 9 місяців тому

      Did you figure it out?@@bigmack13

  • @jackpeterson541
    @jackpeterson541 2 роки тому +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?

  • @cryswerton-silva
    @cryswerton-silva 2 роки тому

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

  • @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 Рік тому

      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!

  • @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.

  • @SophieWillson-qu3gu
    @SophieWillson-qu3gu 2 роки тому

    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

  • @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.

  • @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 Рік тому

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

  • @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

  • @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

  • @manasahr430
    @manasahr430 Рік тому

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

  • @joeniati7903
    @joeniati7903 Рік тому

    what commands should i runto start the project

  • @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

  • @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.

  • @speedbump164
    @speedbump164 2 роки тому

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

  • @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

  • @joeniati7903
    @joeniati7903 Рік тому

    does this use any kind of JWT token?

  • @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!

  • @PilotLu
    @PilotLu 2 роки тому

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

  • @uykerrykaberga
    @uykerrykaberga 2 роки тому

    great video

  • @joeniati7903
    @joeniati7903 Рік тому

    or any kind of tokens?

  • @aldelta19
    @aldelta19 Рік тому

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

  • @MattVibes
    @MattVibes 3 роки тому +3

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

  • @joeniati7903
    @joeniati7903 Рік тому

    This project will not start for me properly

  • @captainwalter
    @captainwalter 2 роки тому

    whats your font and theme?

  • @timothyatanda1188
    @timothyatanda1188 Рік тому

    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😭

  • @techany671
    @techany671 Рік тому

    Githhub link?