I've built a Shiny app and it runs on approximately ~3,000 lines of code. The code is organized and could easily be split into several modules , according to Dean's example split app code across multiple files (when codebase is large).
Let's say the app is completely wrapped up (it won't grow any larger or be modified/reviewed frequently). Is there any functional consequence to leaving everything in one single app.R file? (my ui and server are all included currently).
Is my app going to run/deploy particularly slowly just from being sourced from a single file?
Thanks!