docs: fix docs

This commit is contained in:
Nolan Lawson 2022-11-25 09:31:34 -08:00
parent 94ac20ab20
commit 64403ed8ec
3 changed files with 3 additions and 3 deletions

View File

@ -121,7 +121,7 @@ or
1. Run `rm -fr mastodon` to clear out all Mastodon data 1. Run `rm -fr mastodon` to clear out all Mastodon data
1. Comment out `await restoreMastodonData()` in `run-mastodon.js` to avoid actually populating the database with statuses/favorites/etc. 1. Comment out `await restoreMastodonData()` in `run-mastodon.js` to avoid actually populating the database with statuses/favorites/etc.
2. Update the `GIT_TAG` in `mastodon-config.js` to whatever you want 2. Update the `GIT_TAG` in `mastodon-config.js` to whatever you want
3. If the Ruby version changed (check Mastodon's `.ruby-version`), install it and update `RUBY_VERSION` in `mastodon-config.js` as well as the Ruby version in `.circleci/config.yml`. 3. If the Ruby version changed (check Mastodon's `.ruby-version`), install it and update `RUBY_VERSION` in `mastodon-config.js` as well as the Ruby version in `.github/workflows`.
4. Run `yarn run-mastodon` 4. Run `yarn run-mastodon`
5. Run `yarn backup-mastodon-data` to overwrite the data in `fixtures/` 5. Run `yarn backup-mastodon-data` to overwrite the data in `fixtures/`
6. Uncomment `await restoreMastodonData()` in `run-mastodon.js` 6. Uncomment `await restoreMastodonData()` in `run-mastodon.js`

View File

@ -1,4 +1,4 @@
# Pinafore [![Build status](https://circleci.com/gh/nolanlawson/pinafore.svg?style=svg)](https://app.circleci.com/pipelines/gh/nolanlawson/pinafore) # Pinafore
An alternative web client for [Mastodon](https://joinmastodon.org), focused on speed and simplicity. An alternative web client for [Mastodon](https://joinmastodon.org), focused on speed and simplicity.

View File

@ -127,7 +127,7 @@ export default {
dev && new webpack.HotModuleReplacementPlugin({ dev && new webpack.HotModuleReplacementPlugin({
requestTimeout: 120000 requestTimeout: 120000
}), }),
// generates report.html, somewhat expensive to compute, so avoid in CircleCI tests // generates report.html, somewhat expensive to compute, so avoid in CI tests
!dev && !process.env.CI && new BundleAnalyzerPlugin({ !dev && !process.env.CI && new BundleAnalyzerPlugin({
analyzerMode: 'static', analyzerMode: 'static',
openAnalyzer: false, openAnalyzer: false,