Skip to content

Instantly share code, notes, and snippets.

@andreaseriksson
Last active January 8, 2016 14:24
Show Gist options
  • Save andreaseriksson/af8f0cee3d2ba10e3eb3 to your computer and use it in GitHub Desktop.
Save andreaseriksson/af8f0cee3d2ba10e3eb3 to your computer and use it in GitHub Desktop.

New project

mix phoenix.new phoenix_experiments

Create DB

mix ecto.create

Start server

mix phoenix.server

Start console

iex -S mix

Run specs

mix test

Migrations

mix ecto.migrate
mix ecto.rollback

Generators and Scaffold

mix phoenix.gen.model User users name:string age:integer
mix phoenix.gen.html Post posts title body:text
mix phoenix.gen.json Market markets name:string phone:string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment