Creating a new Phoenix project:
# Needs node >= 5.0
nvm install 5.4
# Install phoenix
mix local.hex
mix archive.install https://github.com/phoenixframework/phoenix/releases/download/v1.1.2/phoenix_new-1.1.2.ez
# Create phoenix project
mix phoenix.new test_app
cd test_app
mix phoenix.server
Open source codebases
Deployment
- Elixir Phoenix App deployed into a Load Balanced DigitalOcean setup
- Deploying Phoenix on Ubuntu with Gatling
Bookmarks
- Phoenix Guides
- Let’s Build a Web App With Phoenix and Ecto
- A hands-on intro to building modern web applications with Elixir and Phoenix
- Build and test a blazing fast JSON API with Phoenix, an Elixir framework
Example apps
- Simple Chat Example, by Chris McCord
- Blox - a simple blog application
- Phoenix demo app with authentication, admin/user scopes and a websocket chat
- A simple CRUD application using Elixir and the Phoenix framework
- Gaze - Phoenix with React
- phoenix-flux-react - An experiment with Phoenix Channels, GenEvents, React and Flux