This Vagrant box is based off of vagrant-phoenix-postgres
- Ubuntu 14.04 LTS
- Elixir 1.4.1
- Phoenix 1.2.0
- PostgreSQL 9.4.11
- NodeJS 7.6.0
- NPM 4.1.2 / Yarn
- Git 1.9.1
Windows users, make sure you run vagrant from a terminal with admin rights.
When running NPM install in a Phoenix project, you may need to tell NPM not to create symlinks.
npm install –no-bin-links
To get started with a Phoenix project:
- Download dependencies
mix deps.get
- Create the database
mix ecto.create
- Run the migrations
mix ecto.migrate
- Start the server
mix phoenix.server