mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 07:45:41 +01:00
Matthias Kretschmann
72fff1dbca
* change beta deployment behavior: on every pull request instead of named branch * consolidate gulp deploy tasks into one * push 100 objects in parallel to S3 * make CI scripts a bit more verbose
20 lines
441 B
Bash
Executable File
20 lines
441 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e;
|
|
|
|
echo "$(tput setaf 136)"
|
|
echo " Installing dependencies "
|
|
echo "============================================="
|
|
echo "$(tput sgr0)" # reset
|
|
|
|
npm install gulp -g
|
|
npm install
|
|
|
|
# Travis does that automatically after selecting ruby
|
|
#bundle install
|
|
|
|
echo "$(tput setaf 64)" # green
|
|
echo "---------------------------------------------"
|
|
echo " ✓ done installing dependencies"
|
|
echo "$(tput sgr0)" # reset
|