Update FAQ
This commit is contained in:
parent
7d47ff906d
commit
2f398c19fd
2
FAQ.md
2
FAQ.md
|
@ -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?
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue