Update FAQ

This commit is contained in:
Chocobozzz 2020-05-14 13:47:03 +02:00
parent 7d47ff906d
commit 2f398c19fd
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 8 additions and 6 deletions

2
FAQ.md
View File

@ -91,7 +91,7 @@ and FLV formats when transcoding is enabled on their instance.
## I want to change my domain name, how can I do that?
You can't. You'll need to reinstall an instance and reupload your videos.
It's not officially supported, but you can try the `update-host` script: https://docs.joinpeertube.org/#/maintain-tools?id=update-hostjs
## Why do we have to put our Twitter username in PeerTube configuration?

View File

@ -3,11 +3,13 @@
* Fix remaining important bugs
* Update [/CHANGELOG.md](/CHANGELOG.md)
* Check migrations:
* `npm run clean:server:test`
* `git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server`
* `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and quit after initialization
* `git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server`
* `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and check migrations do not fail
```
npm run clean:server:test
git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server
NODE_APP_INSTANCE=6 NODE_ENV=test npm run start
git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server
NODE_APP_INSTANCE=6 NODE_ENV=test npm run start
```
* Run `rm -r node_modules && rm -r client/node_modules && yarn install --pure-lockfile && npm run build` to see if all the supported languages compile correctly
* Update https://peertube2.cpy.re and check it works correctly
* Check CI tests are green