Skip to content

maxjacobson/seasoning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tv set logo

CI

Seasoning

Your couch away from your couch.

Deploying to: http://seasoning.herokuapp.com/ aka https://www.seasoning.tv

Demo: https://www.youtube.com/watch?v=4aB6LbN2ff8

Setup

  1. Install ruby, node, and postgres
  2. Run cp .env.development .env.development.local and fill out .env.development.local
  3. Run bin/setup

Then to start things up, run these two commands in two separate terminal tabs:

  1. rails server
  2. bin/vite dev -- this is technically optional, but it will enable hot module reloading which is nice

And visit http://localhost:3000

Tests

To run the tests locally:

bin/vite build
bin/rails test:all

If iterating on front-end code while putting together tests, can run this so you don't need to keep rebuilding over and over.

bin/vite dev --mode=test