An instance of Sanity Studio for content management.
- Required tools to run this project:
- Node.js and npm to run locally on a host machine
- Install dependencies by running
npm ci
- Run the following command:
npm start
to start local development server
NODE_ENV
- current environmentdevelopment
production
SANITY_STUDIO_PROJECT_ID
- Sanity Studio project IDSANITY_STUDIO_DATASET
- Sanity Studio dataset
Whenever a new change is to be implemented, follow these steps:
- Create a new branch from the
master
branch - Implement and commit changes
- Create a pull request for code review
This repository uses conventional commmit format. In order to commit, follow these steps:
- Stage files to be committed
- Run
npm run commit
script
Avoid using --no-verify
flag when making commits.