Skip to content
This repository was archived by the owner on Jul 2, 2018. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# Plixir

To start your new Phoenix application:
Plixir is built using [Phoenix Framework](http://www.phoenixframework.org/) and [Ecto](https://github.com/elixir-lang/ecto) accessing a PostgreSQL database.

To start your Plixir application, you have to:

1. Install dependencies with `mix deps.get`
2. Start Phoenix endpoint with `mix phoenix.server`
2. Run `npm install` to install javascript dependencies
3. Make sure you have a 'plixir' role in your Postgres
CREATE USER plixir WITH PASSWORD 'plixir' CREATEDB;
4. Run Ecto migrations with `mix do ecto.create, ecto.migrate`
5. Start Phoenix endpoint with `mix phoenix.server`

Now you can visit `localhost:4000` from your browser.