A help desk application used by Hack Reactor students.
- Node 6.11.x
- Postgresql 9.1.x
- Redis 3.2.x
npm installThe npm db-setup command only needs to be run once. This will create the database, start it, and initialize it.
npm run db-setupThe db-setup script is equivalent to:
npm run db-create
npm run db-start
npm run db-initIn the event that you just want to start up the database, use the db-start script as follows:
npm run db-startThe below script will drop, create, and seed the database tables with sample data found in database/sampleData.js.
npm run db-migrateTo access your database from within terminal use the below command.
psql helpReactorOnce 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;Redis is an open source, in-memory data structure store, used as a database, cache and message broker.
brew install redisredis-servernpm run server-devnpm run react-devView the project roadmap here
See CONTRIBUTING.md for contribution guidelines.