A chatbot that simulates a job interview and rates the candidates' (end users') responses. Developed by Shrish Mohapatra and Sayma Khan.
In order to run InterChat, clone the project and then complete the following steps.
- Start a terminal and change directory to 'interchat'.
-
Type
npm install
to get all dependencies. -
Create new file in
\config
folder calledkeys.js
. Format as follows:
module.exports = {
database: {
uri: '<INSERT_MONGODB_URL_HERE>'
},
apiKey: '<INSERT_RANDOM_STRING_HERE>',
wit: {
serverToken: '<INSERT_WIT_SERVER_TOKEN>',
clientToken: '<INSERT_WIT_CLIENT_TOKEN>'
}
}
- Type
npm run dev
to run back-end.
-
Add a new terminal and ensure you are again in the 'interchat' directory.
-
Now, change directory to 'client'.
-
Type
npm install
to get all dependencies. -
Type
npm start
to run front-end (React application).