Replies: 1 comment
-
@jvelo Thank you for the instructions. Do you know whether there is a possibility to replace Resend and Vercel with self-hostable open source alternatives? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello there,
I gave a go to self-hosting on Vercel, I'm mostly there I think (haven't tried every feature yet)
To whom it may help, here's a couple of things I had to do:
app/(static)/open-source-investors/page.tsx
, don't throw error on Airtable 401, but return an empty listlib/tinybird/pipes.ts
, changeget_total_average_page_duration
andget_page_duration_per_view
pipes fromv5
tov4
as the tb deploy step creates v4package.json
andtrigger.ts
lib/middleware/domain.ts
, change the redirect response to target domainmiddleware.ts
, add the target domain to the list of hosts for which to not returnDomainMiddleware
lib/resend.ts
change the "FROM" mails so that they can come from a verified domain I controlpages/api/auth/[...nextauth].ts
, change the cookie domain for vercel deploymentsnext.config.mjs
, tweak the patterns so that the target object store is whitelisted for imagesINTERNAL_API_KEY
env variable (I've set the value to a random secret)Happy to give more details if needed, or to try and contribute to making it easier if there's interest!
Beta Was this translation helpful? Give feedback.
All reactions