has anyone tried using Relay Compiler without Relay itself? sort of to just compose fragments. but no client-side cache and the actual querying happens server-side only
is patch-package supposed to work well with railway? getting bizarre issues where it seems to be running unpatched code despite patch log showing up before next bundling. tried turning off build caching but not sure it worked
i have a Node.js app deployed to Railway. it uses a sqlite database. initially the database is empty
i'm getting "database is locked" on deploy because my deploy script ends up trying to create the database tables concurrently from two processes, and sqlite doesn't like that
what's the proper fix?