Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.61 KB

README.md

File metadata and controls

40 lines (31 loc) · 2.61 KB

AskAGator Build Status Maintainability Test Coverage

Ask A Gator is a website/platform for professors/teachers at a school or university to use to ask their students questions. They will be able to see live how many responses there are and the total count of who voted for what.

Getting started

To get started with development on AskAGator follow these steps:

  1. Install erlang (v21)
  2. Install elixir (v1.8.1)
  3. Install phoenix (v1.4.1)
  4. Install node (v11.9.0) & yarn (v1.13.0)
  5. Install Postgresql (11.1)
  6. Create a postgres user named postgres and no password or password of postgres (Should be the default)
  7. Clone this repo
  8. Install the Phoenix dependencies with mix deps.get
  9. Create and migrate your database with mix ecto.setup
  10. Install the node dependencies with yarn install
  11. Start the server with mix phx.server
  12. Go to localhost:4000 in your browser to view the site

Some Helpful Documentation

Backend

Frontend