Quantcast
Channel: 一言多いプログラマーの独り言
Viewing all articles
Browse latest Browse all 846

ElixirでOTP(Open Telecom Platform) スケルトンアプリ作成

$
0
0
ElixirでOTP(Open Telecom Platform) スケルトンアプリ作成です。ElixirDoseさんの簡易ブログチュートリアルを見つけたので、チャレンジ。本当に必要最低限の構成なので、理解が深まった気分?


$ mix new dds_blog --sup
/mix.exs

def application do
[applications: [:logger, :cowboy],
mod: {DdsBlog, []}]
end

defp deps do
[
{:cowboy, "~> 1.0"}
]
end



参考サイト
Cowboy Tutorial Part 2: Creating Flat File Blog(ElixirDoseさん)
OTPとは何か?(Learn you some Erlangさん)
Mix.Tasks.New(Mix)
CowboyとElixirで静的ページを表示する(ハードリカーエンジニアさん)
Erlang/OTP architectures: cowboy(Mediumさん)

Viewing all articles
Browse latest Browse all 846

Trending Articles