hi folks. Finally getting round to experimenting w...
# sst
p
hi folks. Finally getting round to experimenting with SST (just in time for the conference later! 😄). I’m interested in checking out the typescript monorepo linked to from this page, but it’s 404ing https://docs.serverless-stack.com/advanced/monorepo-project-structure
I also get
Example "typescript-monorepo" does not exist.
whenever I try to install it via the yarn command
t
ah I thanks for finding this, we actually just baked this into the new starters for 1.0 so
yarn create sst
and choosing the typescript one will get you that
need to update this doc
s
Timely, I was just looking for this repo yesterday
p
cool, thanks for the super fast response @thdxr 🙂 . Is that command for the monorepo though? it doesn’t look like the DDD-like monorepo structure described on the docs page. this is what I’m getting
I don’t even need to install it right now tbh. Just interested in browsing a GitHub repo with a structure that supports multiple services (if you have one, that is)
t
ah I see, yeah we didn't include the concept of
core
in this but it will be in the graphql stack I'm demoing later. All it really is is another folder in backend called
core
and updating the
backend/tsconfig.json
to have
"include": ["functions", "core"]
and
Copy code
"paths": {
      "@my-sst-app/core/*": ["./core/*"]
    }
p
ok cool 👍🏻, makes sense
good luck with the the conf talk!