docs: fix docs
This commit is contained in:
parent
94ac20ab20
commit
64403ed8ec
|
@ -121,7 +121,7 @@ or
|
|||
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.
|
||||
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`
|
||||
5. Run `yarn backup-mastodon-data` to overwrite the data in `fixtures/`
|
||||
6. Uncomment `await restoreMastodonData()` in `run-mastodon.js`
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -127,7 +127,7 @@ export default {
|
|||
dev && new webpack.HotModuleReplacementPlugin({
|
||||
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({
|
||||
analyzerMode: 'static',
|
||||
openAnalyzer: false,
|
||||
|
|
Loading…
Reference in New Issue