Last active
September 11, 2015 04:16
-
-
Save wastemobile/326db3a847805348e902 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo -e "\n移除不需要的預設套件" | |
meteor remove autopublish insecure | |
echo -e "\n安裝基礎會員帳戶套件" | |
meteor add accounts-password alanning:roles | |
echo -e "\n安裝 Flow 路由套件" | |
meteor add kadira:flow-router kadira:blaze-layout | |
echo -e "\n安裝 Flow 路由輔助套件" | |
meteor add arillo:flow-router-helpers dispatch:router | |
echo -e "\n安裝測試套件" | |
meteor add sanjo:jasmine velocity:html-reporter velocity:console-reporter | |
echo -e "\n安裝常用套件" | |
meteor add sacha:spin tap:i18n | |
# Matarialize SCSS 套件無法與 CodeShip CD 相容 | |
echo -e "\n安裝 Materialize CSS" | |
meteor add fourseven:scss poetic:materialize-scss | |
echo -e "\n建立基本程式架構" | |
mkdir -p client/styles | |
mkdir -p client/layouts | |
mkdir -p client/templates | |
mkdir -p client/config | |
mkdir server | |
mkdir lib | |
mkdir -p tests/jasmine/server/unit | |
mkdir -p tests/jasmine/client/integration | |
touch settings.json | |
touch lib/routes.js | |
touch client/styles/index.scss |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment