Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 895 Bytes

File metadata and controls

51 lines (34 loc) · 895 Bytes

Build Status

The Loom: dashboard

loom es una aplicación web que acompaña a los estudiantes en su cursada

Setup

  cp .env.example .env
  nano .env
  make build
  docker-compose run app rake db:setup

Running the app

  make start

Developer helpers

In order to load seeds, run

  make dev_seed

You'll get three courses with students. You need to log-in now.

After logged in, you might want to do some or all of these actions:

  # make yourself admin
  make dev_admin

  # subscribe yourself to all courses at once
  make dev_courses

  # promote yourself as teacher (only for your courses)
  make dev_teacher

Tip: A shorthand for all three actions is make dev_all

Stopping the app

  make stop