4

I'm looking for any tutorial or how to guide on deploying Self Hosted Supabase with AWS. Trying to use the Postgres RDS but it doesn't have pgjwt plugin and we can't install it on manage service like RDS. Any link will be very helpful, thank you

dts
  • 153
  • 1
  • 7

2 Answers2

1

You could run your own customized PosgreSQL database on EC2 instance. There are a decent number of guides available on the net, see for example this article. Don't forget to install etxtra modules (including pgjwt) if they are not included in the PostgreSQL distribution package you used.

Marko Eskola
  • 717
  • 4
  • 11
0

By the looks of it, pgjwt is a pure SQL extension: https://github.com/michelp/pgjwt/issues/4

This means that you can go to the source code, find the SQL and execute them manually on your RDS instance.

Dancrumb
  • 26,597
  • 10
  • 74
  • 130