1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

kintoneのカスタマイズ効率をあげよう。脱超初心者編2

Last updated at Posted at 2020-03-10

Qiitaではなく、下記のサイトに移行しました
続きも掲載していますのでこちらをご覧ください

kintoneのカスタマイズ効率をあげよう。脱超初心者編1の続きです。
まだ見ていない人は先に1を見てください。

今回やることは2つです。

  1. https://127.0.0.1:8000/ のアクセスを不要にします。
  2. 2つ目、3つ目のカスタマイズをしやすいようにGitHubを使って複製できるようにします。

自己証明書の作成

mkcertをダウンロードして、以下のコマンドを実行します。
実行ファイル名はダウンロードしたファイル名に書き換えてください。
実行方法がわからなければVisual Studio Code Live Server Extensionを使ってkintoneカスタマイズ開発効率をあげよう!を参考にしてください。

> ./mkcert-v1.4.1-windows-amd64.exe -install
> ./mkcert-v1.4.1-windows-amd64.exe localhost 127.0.0.1 ::1

実行できれば2つのファイルができるはずです。
そのファイルをプロジェクトフォルダの1つ上に移動させます。
カスタマイズフォルダはカスタマイズするアプリごとに増えますが、この自己証明書は共通だからです。
image.png

次はpackage.jsonを書き換えます。

package.json
    "ws": "ws --https --cert ../localhost+2.pem --key ../localhost+2-key.pem",

これでhttps://127.0.0.1:8000/ にアクセスする必要がなくなりました。

つぎは2つ目、3つ目のカスタマイズテンプレートを作りやすくします。
これまでに作ってきたkintone-customize-templateフォルダをコピーしてもいいのですが、不要なファイルの書き換えなど少し面倒です。
なのでGitHubを使ってそれを簡単にします。

Gitのインストール

以下からダウンロードしてインストールします。
https://git-scm.com/

インストール途中の選択肢「Choosing the default editor used by Git」では「Use Visual Studio Code as Git's default editor」を選択します。

kintone-customize-templateをclone

以下のコマンドを実行します。

> git clone git@github.com:potaracom/kintone-customize-template.git プロジェクト名
> cd プロジェクト名
// .gitフォルダを削除
// package.jsonname, dev, prodを書き換え
// manifest.dev.json, manifest.prod.jsonappを書き換え
> npm install

これでカスタマイズを始める準備完了です。

1
0
0

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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?