I have a main app that I’m working on as well as a little toy one that I features/components on. I’m consistently finding that the server for the main app takes longer to initialize than the little toy one in the interactive UI window. Rendering the client code and server calls are pretty fast once the server is initialized.
** Does having more packages and features mean initializing the server takes longer? **
A bit more info on the toy and main apps
I have no data tables, packages or features on the toy app.
The main app has a user table with 2 rows. It has these features:
- Users
- Secrets
- Google auth
It also has these packages:
- Anvil extra
- M3
The server code doesn’t do anything fancy on the main app; it looks for the current user in the user table and sets or returns some values from that row.