https://github.com/benjaminhoffman/encompass
Startup Career Compensation Calculator
https://github.com/benjaminhoffman/encompass
Last synced: 12 months ago
JSON representation
Startup Career Compensation Calculator
- Host: GitHub
- URL: https://github.com/benjaminhoffman/encompass
- Owner: benjaminhoffman
- License: mit
- Created: 2015-10-15T21:35:39.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-06T22:41:36.000Z (over 10 years ago)
- Last Synced: 2025-04-08T08:23:23.854Z (about 1 year ago)
- Language: JavaScript
- Size: 14.1 MB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#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:
1. `npm install` in root folder
2. `npm install` in client folder
3. type `grunt server-dev` (cd into client folder)
* this will transpile the JSX upon any change
###Setting up the database:
1. Install PostgreSQL, and create a database named 'encompass'
* (from terminal) `psql template1`
* (in PostgreSQL) `CREATE DATABASE encompass;`
* (in PostgreSQL) Press `ctrl+D` to exit
2. `npm run dbreset` to drop the database and rebuild the tables.
3. `npm run seed` to seed the database. This takes a while.
###Setting Redis data store:
1. Install redis `brew install redis`
2. Start redis server `redis-server`
###Starting the app:
1. cd into the server directory
2. type `npm start`