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

Поделиться
HTML-код
  • Опубликовано: 25 ноя 2021
  • 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.sqlalchemy.org/en/20/
  • НаукаНаука

Комментарии • 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 7 месяцев назад

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

  • @cryswerton-silva
    @cryswerton-silva 2 года назад

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

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

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

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

    great video

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

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

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

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

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

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

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

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

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

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

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

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

    what commands should i runto start the project

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

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

  • @joeniati7903
    @joeniati7903 11 месяцев назад

    does this use any kind of JWT token?

  • @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 6 месяцев назад

      Did you ever sort this out

    • @sagharsahebi5236
      @sagharsahebi5236 5 месяцев назад

      Did you figure it out?@@bigmack13

  • @joeniati7903
    @joeniati7903 11 месяцев назад

    or any kind of tokens?

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

  • @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 10 месяцев назад

      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!

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

  • @MattVibes
    @MattVibes 2 года назад +3

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

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

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

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

    whats your font and theme?

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

    Githhub link?

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

    This project will not start for me properly

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

    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😭