Where can I find an example repo using sst1.0 and a few stacks working together (aka “real world example”)? I’m new to this and want to see what’s the recommended way to structure a real-world project.
E.g.: I have a system with a pattern where I have multiple instances of something like this: A Function produces jobs for a Queue, another Function consumes these messages. The producer Function runs every night (with the help of a Cron) but can also be triggered through an Api call.
The
Architecture section suggests I should have an Api, a Queue and a Cron stack, but it would make it harder to see the connections, wouldn’t it? How to split them into multiple files?