I got through the notes app Basics section (super ...
# help
r
I got through the notes app Basics section (super cool btw. love the error handling stuff at the end) and started reading the Best Practices section. I have a question about the Organizing Serverless Projects part. It talks about separating everything and the different ways to do that, but it only talks about the API and AWS stuff. It doesn’t talk about the react app at all. Is there a reason for that or am I missing something? https://serverless-stack.com/chapters/organizing-serverless-projects.html
t
Haven't read through this but this is my opinionated structure: https://github.com/serverless-stack/serverless-stack/tree/master/examples/typescript-monorepo
If you look here: https://github.com/serverless-stack/serverless-stack/blob/master/examples/typescript-monorepo/package.json#L14 I place my frontend apps in
web/frontend1
web/frontend2
etc
a
This is a gem, thank you for making this.