ieferrari

Results 5 comments of ieferrari

In my case, even after [brutally remove everything Docker related](https://stackoverflow.com/questions/34658836/docker-is-in-volume-in-use-but-there-arent-any-docker-containers), back-end login at localhost:80 was still not working. Only after running the front-end (as suggested in [#339](https://github.com/tiangolo/full-stack-fastapi-postgresql/issues/339) ) with `cd...

I think a better option is to save the token in a [samtesite=Strict cookie](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite#strict) from [owasp csrf-cheatsheet:](https://cheatsheetseries.owasp.org/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.html#samesite-cookie-attribute) > The Strict value will prevent the cookie from being sent by the...

I think databases are not designed to function as file storage, maybe a better way is to save the image file to some location (like a local folder on your...

maybe modifying in the content of full-stack-fastapi-postgresql/backend/app/app/db/session.py from `engine = create_engine(settings.SQLALCHEMY_DATABASE_URI, pool_pre_ping=True)` to `engine = create_engine("postgresql://"username:password@ip:port/db_name", pool_pre_ping=True)`

I think that the main point is to make the front-end interact with all the api's exposed in localhost:80/docs by adding more views in full-stack-fastapi-postgresql/frontend/src/router.ts it would be nice to...