This file contains 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
<?php | |
// CPIユーザーID(契約情報で確認してください) | |
$user_id = 'abc123defg'; | |
// リポジトリ名(Backlogで確認してください) | |
$repo_name = 'repository_name'; | |
// Gitレポジトリの位置の指定 | |
$git_dir = '/usr/home/' . $user_id . '/' . $repo_name . '.git'; | |
// 展開先ディレクトリの指定 | |
$work_tree = '/usr/home/' . $user_id . '/html'; | |
// logファイルの指定 |
This file contains 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 | |
shopt -s expand_aliases | |
source ~/.bash_profile | |
## 日本語化 | |
wocker wp core language install ja | |
wocker wp core language activate ja | |
## いろいろなプラグインをインストール | |
echo "いろいろなプラグインをインストールしますか? [Y/N]" |