#Encompass #Startup Career Compensation Calculator A tool that helps all tech employees make better, more informed hiring decisions
###When setting up local environment, do the following:
npm installin root foldernpm installin client folder- type
grunt server-dev(cd into client folder)
- this will transpile the JSX upon any change
###Setting up the database:
- Install PostgreSQL, and create a database named 'encompass'
- (from terminal)
psql template1 - (in PostgreSQL)
CREATE DATABASE encompass; - (in PostgreSQL) Press
ctrl+Dto exit
npm run dbresetto drop the database and rebuild the tables.npm run seedto seed the database. This takes a while.
###Setting Redis data store:
- Install redis
brew install redis - Start redis server
redis-server
###Starting the app:
- cd into the server directory
- type
npm start