Skip to content

Latest commit

 

History

History
54 lines (38 loc) · 877 Bytes

README.md

File metadata and controls

54 lines (38 loc) · 877 Bytes

Stories in Ready

Playing with Projections

Preparation of a workshop

Server

The server implementation is a phoenix app.

background info (to create the project): mix phoenix.new . --no-brunch --no-ecto --no-html --app quizzy

To prepare the server:

cd server/elixir
mix deps.get

To run the server:

mix phoenix.server

to run the tests:

mix test

to run the test continuously:

mix test.watch

api

/stream/:id

/stream/0 is used to test the clients

Generator

To prepare the generator:

cd generator
bundle install

To generate some data

ruby generate.rb

Clients

Look in the client directories