aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--FAQ.md2
-rw-r--r--support/doc/development/release.md12
2 files changed, 8 insertions, 6 deletions
diff --git a/FAQ.md b/FAQ.md
index 0553faec5..84862e355 100644
--- a/FAQ.md
+++ b/FAQ.md
@@ -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
94You can't. You'll need to reinstall an instance and reupload your videos. 94It'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` 7npm run clean:server:test
8 * `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and quit after initialization 8git 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` 9NODE_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 10git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server
11NODE_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