Quite often everything works locally but fails on Linux. In many cases it turns out to be things like case-sensitive paths or filesystem differences.
I'm curious how others handle this workflow.
Do you also develop on Windows and deploy to Linux? What kinds of issues did you encounter?
bigyabai•1h ago
ghostlyInc•1h ago
I can run it in WSL, but since my development happens on Windows I have to copy the build output into the WSL environment and run it there. I automated it a bit, but it still adds noticeable overhead and slows down the feedback loop.
So I usually only test there when I suspect a Linux-specific issue (case sensitivity, paths, permissions, etc.).