Hi Does anyone knows if authentication headers wil...
# orm-help
g
Hi Does anyone knows if authentication headers will not work on netlify free plan as it states on their pricing page:
Mapping that question to prisma docs on authentication, so again, does it mean that the feature on the tutorial below will not work? https://v1.prisma.io/tutorials/authentication-in-apollo-server-ct21/
probably @Ryan will know that
r
Ideally it should. Have you tried it locally? If it works locally then it might be an issue in either configuring Netlify or Ntelify itself. If it doesn’t, then there might be an issue in the code.
On another note, if you’re getting started, I would recommend Prisma 2 as it doesn’t require an external server to run with.
g
@Ryan what do you mean exactly that it does not require an external server to run with? Would it be because you can run it in lambdas on aws etc?
r
Prisma 1 required a separate server to handle GraphQL queries. Prisma 2 being made in Rust doesn’t require any of that. You just need your Node app and it can be deployed anywhere. I would suggest going through the Get Started section in the above doc so that you get a better idea. Prisma 2 has more newer features and is being actively developed.