Thanks for your interest in Supabase docs and for wanting to contribute! Before you begin, read the code of conduct and check out the existing issues. This document describes how to set up your development environment to contribute to Supabase docs.
For a complete run-down on how all of our tools work together, see the main DEVELOPERS.md. That readme describes how to get set up locally in lots of detail, including minimum requirements, our Turborepo setup, installing packages, sharing components across projects, and more. This readme deals specifically with the docs site.
Tip
If you work at Supabase, branch this repo directly to make PRs. Don't use a fork. This lets the CI checks auto-run and speeds up review.
supabase.com/docs is a Next.js site. You can get setup by following the same steps for all of our other Next.js projects:
- Follow the steps outlined in the Local Development section of the main DEVELOPERS.md
- If you work at Supabase, run
dev:secrets:pull
to pull down the internal environment variables. If you're a community member, create a.env
file and add this line to it:NEXT_PUBLIC_IS_PLATFORM=false
- Start the local docs site by navigating to
/apps/docs
and runningnpm run dev
- Visit http://localhost:3001/docs in your browser - don't forget to append the
/docs
to the end - Your local site should look exactly like https://supabase.com/docs
For repo organization and style guide, see the contributing guide.