Perseus Exercise Renderer
Perseus is Khan Academy's exercise system. This repo contains the code needed to take a problem in the perseus format and present it, allow interaction, and grade the result of a learner's work.
This repo is a constellation of sub-repos for showing exercise content. Please see individual projects in in the packages/
folder for more information about each sub-project.
To install perseus, you need to run the following commands:
Installs project dependencies
The components and widgets of perseus are devleoped using Storybook. After you clone the project and get dependencies installed, the next step is to start storybook by running yarn storybook
. This will start a server and give you a playground to use each component.
We use changesets to help manage our versioning/releases. Before pushing a new PR, add a changeset by running yarn changeset
. Commit and submit that with the PR.
The Perseus project is not accepting external contributions. We’re releasing the code for others to refer to and learn from, but we are not open to pull requests or issues at this time.
For a slightly more detailed overview, see the "Shipping a Change to Perseus" document in Confluence.
Perseus is a monorepo - a single repository that ships multiple npm packages. Generally you can treat Perseus as a single code base; things should generally just work as you expect them to during the development process. We use scripts and a tool called changesets to keep package inter-dependencies organized, release the one repo to multiple npm packages, and version changes appropriately.
git checkout main; git pull
git checkout -b [FEATURE_BRANCH_NAME]
- ☢️ We don’t use deploy branches in Perseus
yarn start
will start Storybook on localhost:6006- Do stuff
yarn test
will run Jest/RTL tests;yarn cypress
will run Cypress testsyarn changeset
will walk you through creating a changeset (we generally stick to semver)- ☢️ Empty changesets should be considered an exception to the rule and should generally be avoided
git add
andgit commit
git pull-request
will walk you through creating a pull request
- When you create/update a PR, we run a series of checks against your code
- Gerald requests reviewers (there’s a “perseus” user group that primary maintainers are in)
- Linting/Types/Tests; checks to make sure code is properly covered
- Check for a changeset
- 🍀 A snapshot release is made and can be used to check changes before merging/releasing
- Once checks pass and code is approved, land your changes into main
- 🚨 main should remain releasable! Don’t land code to main that you’re not ready to ship!
- 🍀 Use stacked feature branches if you’re working on a big change that depends on multiple PRs
- Landing changes to main creates/updates a “Version Packages” PR
- To cut a Perseus release, approve and land the “Version Packages” PR
- ☢️ If the CI/CD checks aren’t running, you might need to close and reopen the PR
- After the release script runs, you should see the new releases on the release page