Dan
01/06/2021, 1:18 AMRyan
01/06/2021, 6:42 AMI find it strange there is absolutely no documentation/guides/examples of any CI/CD or testing with PrismaWe do have examples of testing with Prisma in the official examples repo here. Also there are community made examples here and here that are examples of testing with CI/CD.
I also find it strange that Prisma can be prod ready, but migrate is only beta? Who is actually using prisma without migrate?There are lots of folks using Prisma without Migrate with something known as Introspection. This is useful when you already have an existing database with existing migrations and still want to use Prisma. Migrate is completely opt-in in that case. You can have a look at the above examples and add a deployment step to GitHub actions to whichever platform you are deploying 🙂
Dan
01/06/2021, 7:26 AMRyan
01/06/2021, 7:32 AMDan
01/06/2021, 8:23 AMRyan
01/06/2021, 9:47 AM