1
2

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 5 years have passed since last update.

elixir on phoenix セットアップ

Last updated at Posted at 2016-09-24

#セットアップ

##Elixerをインストール

brew update
brew install elixir

##Hex(パッケージマネージャ)のインストール

mix local.hex

##Phoenixのインストール

mix archive.install https://github.com/phoenixframework/archives/raw/master/phoenix_new.ez

※nodeとDBはインストールされている前提

#Elixer

##対話環境

iex

##ライブラリのインストール

mix deps.get

mix.exsのdepsに記述する

##デバック

IO.write "foo" # => 改行なし
IO.puts "foo"  # => 改行あり
IO.inspect 123 # => リストとかも出力できる

#リンク

1.elixir on phoenix セットアップ
2.elixir on phoenix Mix Tasksについて
3.elixir on phoenix ectoを使っていろいろなSELECT文
4.elixir on phoenix ルーティングの書き方についてまとめてみた
5.elixir on phoenix changesetでのValidates

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?