develop
Welcome to Sentry's Developer documentation!
Quickstart
Simply run
yarn run init
yarn run developGet the Config Ready
Copy the example configuration (and update if needed):
cp .env.example .env.developmentRunning it with Yarn and/or Volta
No need to install gatsby-cli globally
yarn install
yarn gatsby developDocs live in docs/ and pages/.
https://www.gatsbyjs.org/docs/
Alternatively
Install Gatsby:
npm install -g gatsby-cliRun the development server:
gatsby developDocs live in docs/ and pages/.
Testing Search
Search is built with Algolia. At some point may wish to test index changes or other changes to search behavior. To do this you'll need to run gatsby build with a special flag to write to your development environment:
GATSBY_ENV=development gatsby build
You will also need to configure the following in your .env.development:
ALGOLIA_INDEX=1ALGOLIA_ADMIN_KEY=[admin write key]
Deployment
master is automatically deployed via Vercel.