You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should consider removing the requirement on a postgres database to compile code. While this was initially a good feature in early development, I think it's not that useful anymore and tends to get in the way as most tools just don't expect code compilation to require database access. See #429 and #529.
This would involve turning any sqlx query! calls into function calls using query(), as these don't require database access. It would also mean removing the filemanager-build sea-orm entity generation step and instead adding the generated entities into the code base.
I think this change would be beneficial, as it would reduce the hassle of compiling the filemanager codebase and also probably improve compile times.
The text was updated successfully, but these errors were encountered:
We should consider removing the requirement on a postgres database to compile code. While this was initially a good feature in early development, I think it's not that useful anymore and tends to get in the way as most tools just don't expect code compilation to require database access. See #429 and #529.
This would involve turning any sqlx
query!
calls into function calls usingquery()
, as these don't require database access. It would also mean removing thefilemanager-build
sea-orm entity generation step and instead adding the generated entities into the code base.I think this change would be beneficial, as it would reduce the hassle of compiling the filemanager codebase and also probably improve compile times.
The text was updated successfully, but these errors were encountered: