A help desk application used by Hack Reactor students.
- Node 6.11.x
- Postgresql 9.1.x
- Redis 3.2.x
npm install
The npm db-create
and create helpReactor
commands only need to be run once.
npm run db-create
npm run db-start
createdb helpReator
The below script will drop, create, and seed the database tables with sample data found in database/sampleData.js
.
npm run db-migrate
To access your database from within terminal use the below command.
psql helpReactor
Once you are connected to the database you can you the below query to update a users role.
UPDATE users SET role='admin' WHERE id=1;
npm run db-create
Redis is an open source, in-memory data structure store, used as a database, cache and message broker.
brew install redis
redis-server
npm run server-dev
npm run react-dev
View the project roadmap here
See CONTRIBUTING.md for contribution guidelines.