Skip to content

Latest commit

 

History

History
60 lines (37 loc) · 782 Bytes

README.md

File metadata and controls

60 lines (37 loc) · 782 Bytes

mentoriumbot

Configure app

Copy '.env.sample' to '.env'

Replace with your env variables

Running the app

# development
$ yarn start

# watch mode
$ yarn start:dev

# production mode
$ yarn start:prod

Test

# unit tests
$ yarn test

# e2e tests
$ yarn test:e2e

# test coverage
$ yarn test:cov
  1. Chapter 1: What Is JavaScript?[~3h]
  2. Chapter 2: Surveying JS[~3h]
  3. Interview Checkpoint

Heroku

Pause/Resume App

# pause app
heroku ps:scale web=0


# resume app
heroky ps:scale web=1

Deploy

git push heroku master