aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/doc/development
diff options
context:
space:
mode:
Diffstat (limited to 'support/doc/development')
-rw-r--r--support/doc/development/lib.md2
-rw-r--r--support/doc/development/release.md8
-rw-r--r--support/doc/development/tests.md1
3 files changed, 7 insertions, 4 deletions
diff --git a/support/doc/development/lib.md b/support/doc/development/lib.md
index 3cccaf3d0..25fe3068e 100644
--- a/support/doc/development/lib.md
+++ b/support/doc/development/lib.md
@@ -5,7 +5,7 @@
5### Build & Publish 5### Build & Publish
6 6
7``` 7```
8cd client/src/standalone/player/ 8cd client/src/standalone/embed-player-api/
9npm run build 9npm run build
10npm publish --access=public 10npm publish --access=public
11``` 11```
diff --git a/support/doc/development/release.md b/support/doc/development/release.md
index c4935524c..81e35c58d 100644
--- a/support/doc/development/release.md
+++ b/support/doc/development/release.md
@@ -28,9 +28,11 @@ NODE_APP_INSTANCE=6 NODE_ENV=test node dist/server --benchmark-startup
28 28
29## @peertube/embed-api 29## @peertube/embed-api
30 30
31At the root of PeerTube:
32
31``` 33```
32cd client/src/standalone/player 34cd client/src/standalone/embed-player-api
33npm version patch 35npm version patch
34npm run build 36cd ../../../../
35npm publish --access=public 37npm run release-embed-api
36``` 38```
diff --git a/support/doc/development/tests.md b/support/doc/development/tests.md
index e3a65c35f..1c2589c8a 100644
--- a/support/doc/development/tests.md
+++ b/support/doc/development/tests.md
@@ -71,6 +71,7 @@ Some env variables can be defined to disable/enable some tests:
71 * `ENABLE_OBJECT_STORAGE_TESTS=true`: enable object storage tests (needs `chocobozzz/s3-ninja` container first) 71 * `ENABLE_OBJECT_STORAGE_TESTS=true`: enable object storage tests (needs `chocobozzz/s3-ninja` container first)
72 * `AKISMET_KEY`: specify an Akismet key to test akismet external PeerTube plugin 72 * `AKISMET_KEY`: specify an Akismet key to test akismet external PeerTube plugin
73 * `OBJECT_STORAGE_SCALEWAY_KEY_ID` and `OBJECT_STORAGE_SCALEWAY_ACCESS_KEY`: specify Scaleway API keys to test object storage ACL (not supported by our `chocobozzz/s3-ninja` container) 73 * `OBJECT_STORAGE_SCALEWAY_KEY_ID` and `OBJECT_STORAGE_SCALEWAY_ACCESS_KEY`: specify Scaleway API keys to test object storage ACL (not supported by our `chocobozzz/s3-ninja` container)
74 * `ENABLE_FFMPEG_THUMBNAIL_PIXEL_COMPARISON_TESTS=true`: enable pixel comparison on images generated by ffmpeg. Disabled by default because a custom ffmpeg version may fails the tests
74 75
75 76
76### Debug server logs 77### Debug server logs