Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1004 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 1004 Bytes

Monkeynote

Todo

  • Upvote/Downvote.
  • User authentication.
  • Note ownership.
  • Last updated notes first.

Setup

First setup your database config, you can pull an postgres image on dockerhub and run on the console:

docker run --name monkeynote-db -e POSTGRES_PASSWORD=postgres -d -p 5432:5432 postgres

Then start your Phoenix server:

  • Install dependencies with mix deps.get
  • Create and migrate your database with mix ecto.setup
  • Start Phoenix endpoint with mix phx.server or inside IEx with iex -S mix phx.server

Now you can visit localhost:4000 from your browser.

Ready to run in production? Please check our deployment guides.

Learn more