0x80 / mono-ts

A quest for the perfect TS monorepo setup
MIT License
76 stars 7 forks source link

Very nice example! Would you mind adding a GAE example too? #5

Closed maelp closed 7 months ago

maelp commented 7 months ago

My use-case would be this one:

0x80 commented 7 months ago

I am not planning to add all kinds of different deployments to this example, because the list would become endless. The isolation process is independent of the platform you deploy to.

I don't currently use GAE so I don't know the details, but once you run npx isolate in the package you want to deploy you have a directory that should be no different from any other nodejs application that is not coming from a monorepo. A system can run install and then execute the entry point.

Note that for a web app you probably do not need to run isolate. A platform like nextjs deployed on vercel already supports monorepo setups, as will most other platforms I think.

maelp commented 7 months ago

Thanks!