mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 11:26:51 +00:00
14 lines
306 B
Bash
Executable File
14 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Exit the script if any command returns a non-true return value (http://www.davidpashley.com/articles/writing-robust-shell-scripts/)
|
|
set -e
|
|
|
|
# sudo apt-get install npm nodejs-legacy
|
|
# npm config set prefix ~
|
|
|
|
npm install -g grunt-cli
|
|
npm install -g bower
|
|
bower install
|
|
npm install
|
|
grunt prod
|