aboutsummaryrefslogtreecommitdiffstats
path: root/docs/development-visualization.md
diff options
context:
space:
mode:
authorKevin Serrano <kevin.serrano@consensys.net>2017-06-06 07:26:49 +0800
committerKevin Serrano <kevin.serrano@consensys.net>2017-06-06 07:26:49 +0800
commitdeb882bd6e49d71f5ecee8c170a5412ad5e78bec (patch)
tree94b0c57f070db6c6981f1a785878d7b93c00c018 /docs/development-visualization.md
parent0fb38632befc8a09dc12de8f609edfb0ffab9d35 (diff)
parent29c7739efce215f94759295b89c7b46828badb12 (diff)
downloadtangerine-wallet-browser-deb882bd6e49d71f5ecee8c170a5412ad5e78bec.tar.gz
tangerine-wallet-browser-deb882bd6e49d71f5ecee8c170a5412ad5e78bec.tar.zst
tangerine-wallet-browser-deb882bd6e49d71f5ecee8c170a5412ad5e78bec.zip
Merge branch 'master' into currency-fix
Diffstat (limited to 'docs/development-visualization.md')
-rw-r--r--docs/development-visualization.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/development-visualization.md b/docs/development-visualization.md
new file mode 100644
index 000000000..95847300d
--- /dev/null
+++ b/docs/development-visualization.md
@@ -0,0 +1,35 @@
+### Generate Development Visualization
+
+This will generate a video of the repo commit history.
+
+Install preqs:
+```
+brew install gource
+brew install ffmpeg
+```
+
+From the repo dir, pipe `gource` into `ffmpeg`:
+```
+gource \
+ --seconds-per-day .1 \
+ --user-scale 1.5 \
+ --default-user-image "./images/icon-512.png" \
+ --viewport 1280x720 \
+ --auto-skip-seconds .1 \
+ --multi-sampling \
+ --stop-at-end \
+ --highlight-users \
+ --hide mouse,progress \
+ --file-idle-time 0 \
+ --max-files 0 \
+ --background-colour 000000 \
+ --font-size 18 \
+ --date-format "%b %d, %Y" \
+ --highlight-dirs \
+ --user-friction 0.1 \
+ --title "MetaMask Development History" \
+ --output-ppm-stream - \
+ --output-framerate 30 \
+ | ffmpeg -y -r 30 -f image2pipe -vcodec ppm -i - -b 65536K metamask-dev-history.mp4
+```
+