This message was deleted.
# general
s
This message was deleted.
p
You read through this yet? https://www.pulumi.com/docs/guides/organizing-projects-stacks/ I am still getting my bearings as well, but my understanding is that there are many different workable approaches I am partial to the monorepo (nx in my case)
Copy code
├── apps
│  ├── infra-core
│  ├── ...
│  ├── sweet-app
│  ├── sweet-app-infra
├── libs
│  ├── infra
│  │  ├── modules
│  │  │  ├── aurora-postgres
│  │  │  ├── static-frontend
│  │  │  └── vpc
│  │  ├── data
│  │  │  ├── base.yml
│  │  │  └── prod.yml
│  ├── ...
│  ├── sweet-ui
│  ├── utils
p
Yep, had a good look through that one, and the pages it references. I think I’ve worked it out now, and have setup a project for infra, and one for the application services - will use stack references where needed 👍
👍 1