LoginSignup
2

More than 5 years have passed since last update.

Centos7にNginx + Unicornで構築したRedmine3.3のテーマを変更する

Last updated at Posted at 2016-10-10

[概要]

デフォルトのテーマだと何か物足りないのでテーマを変更する。
今回はせっかくなので、2つほど入れて気分で切り替えて使ってくことにする。

[事前準備]

事前に下記が構築済みであること。
Centos7にNginx + UnicornでRedmine3.3構築方法

[作業内容]

 ■ テーマのデータを取得

$ /opt/redmine/public/themes

 ■ minimalflat2

### wgetで入手
$ wget https://github.com/akabekobeko/redmine-theme-minimalflat2/releases/download/v1.2.1/minimalflat2-v1.2.1.zip

### unzipコマンドで解凍
$ unzip minimalflat2-v1.2.1.zip

### zipファイルは不要なので削除
$ rm minimalflat2-v1.2.1.zip

 ■ Dwarf

### cloneしてくる
$ git clone https://github.com/themondays/Dwarf.git

### production の中のdwarfを取り出す
$ mv Dwarf/production/dwarf .

### Dwarfのディレクトリは不要なので削除
$ rm -fr Dwarf

 ■ 再起動させて反映

$ sudo systemctl restart redmine-unicorn.service

 ■ 設定画面からデフォルトから変更してみる

管理設定 から 表示 設定画面を開きます。

redmine_management

追加できることが確認できした。
あとは、Dwarf or Minimalflat2を選択し、保存すれば反映されます。

redmine_view_thema

2つの見た目はこんな感じ
黒を基調にして、シンプルでいい感じ
redmine_dwarf

流行りのフラットデザインでこれもシンプルでいい感じ
redmine_minimalflat2

設定を変更するだけで切り替えられるので、気分で切り替えて当分使ってみようと思います。

[事後確認・作業]

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2