GithubHelp home page GithubHelp logo

reactomg's Introduction

REACTOmg

Overview

REACTOmg is Fullstack Academy's web platform for students to conduct REACTO-style technical interviews remotely. Students may enter private pair programming rooms, where they may answer questions via code editor and/or whiteboard. Both interfaces allow for real-time collaboration between the interviewer and interviewee.

MVP

A user should be able to enter a room with a pair partner, where they can collaboratively write or execute JavaScript code or whiteboard. Multiple pair rooms should be able to run simultaneously.

Stretch Features

  • Rooms specific REACTO problems, with test specs. (CMS features for adding/updating problems or specs)
  • LMS integration with pairs
  • Exportable solutions
  • Recorded interviews

Additional Software Requirements

  • Download and install PostgreSQL
  • Download and install Docker

Database and Secrets Setup

  • Create two postgres databases (MY_APP_NAME should match the name parameter in package.json):
export MY_APP_NAME=boilermaker
createdb $MY_APP_NAME
createdb $MY_APP_NAME-test
  • By default, running npm test will use MY_APP_NAME-test, while regular development uses MY_APP_NAME

  • Create a file called secrets.js in the project root

    • This file is listed in .gitignore, and will only be required in your development environment
    • Its purpose is to attach the secret environment variables that you will use while developing
    • However, it's very important that you not push it to Github!
    • It might look like this:
process.env.GOOGLE_CLIENT_ID = 'hush hush'
process.env.GOOGLE_CLIENT_SECRET = 'pretty secret'
process.env.GOOGLE_CALLBACK = '/auth/google/callback'

Local Host Setup

Ensure that PostgreSQL and Docker are running prior to starting the server locally.

  • npm install
  • To seed the database, open another terminal window and npm run seed
  • To run the application locally, npm run start-dev and navigate to http://localhost:8080/
  • To run test specifications, npm test

Deployment

reactomg's People

Contributors

julissa93 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.