diff options
-rw-r--r-- | FAQ.md | 2 | ||||
-rw-r--r-- | support/doc/development/release.md | 12 |
2 files changed, 8 insertions, 6 deletions
@@ -91,7 +91,7 @@ and FLV formats when transcoding is enabled on their instance. | |||
91 | 91 | ||
92 | ## I want to change my domain name, how can I do that? | 92 | ## I want to change my domain name, how can I do that? |
93 | 93 | ||
94 | You can't. You'll need to reinstall an instance and reupload your videos. | 94 | It's not officially supported, but you can try the `update-host` script: https://docs.joinpeertube.org/#/maintain-tools?id=update-hostjs |
95 | 95 | ||
96 | 96 | ||
97 | ## Why do we have to put our Twitter username in PeerTube configuration? | 97 | ## Why do we have to put our Twitter username in PeerTube configuration? |
diff --git a/support/doc/development/release.md b/support/doc/development/release.md index f8d041cfe..88b434efa 100644 --- a/support/doc/development/release.md +++ b/support/doc/development/release.md | |||
@@ -3,11 +3,13 @@ | |||
3 | * Fix remaining important bugs | 3 | * Fix remaining important bugs |
4 | * Update [/CHANGELOG.md](/CHANGELOG.md) | 4 | * Update [/CHANGELOG.md](/CHANGELOG.md) |
5 | * Check migrations: | 5 | * Check migrations: |
6 | * `npm run clean:server:test` | 6 | ``` |
7 | * `git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server` | 7 | npm run clean:server:test |
8 | * `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and quit after initialization | 8 | git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server |
9 | * `git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server` | 9 | NODE_APP_INSTANCE=6 NODE_ENV=test npm run start |
10 | * `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and check migrations do not fail | 10 | git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server |
11 | NODE_APP_INSTANCE=6 NODE_ENV=test npm run start | ||
12 | ``` | ||
11 | * 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 | 13 | * 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 |
12 | * Update https://peertube2.cpy.re and check it works correctly | 14 | * Update https://peertube2.cpy.re and check it works correctly |
13 | * Check CI tests are green | 15 | * Check CI tests are green |