25 lines
877 B
Markdown
25 lines
877 B
Markdown
|
|
# Project Template
|
||
|
|
|
||
|
|
## Description
|
||
|
|
|
||
|
|
Jibo Interaction Memory uses the knoweldge base to store lists of timestamped interactions.
|
||
|
|
JSON queries can be matched against interactions in memory to produce the last time that exact JSON object was noted.
|
||
|
|
JSON events can be noted to be queried later.
|
||
|
|
|
||
|
|
## How to build / run
|
||
|
|
|
||
|
|
- To initially setup: `npm install`
|
||
|
|
- To build: `gulp debug`
|
||
|
|
- To test: `gulp test`
|
||
|
|
|
||
|
|
## What to change
|
||
|
|
|
||
|
|
When using the template to create project of name **project-name**, please follow these steps:
|
||
|
|
|
||
|
|
1. Clone this project somewhere: `git clone git@github.jibo.com:CharacterAI/project-template.git`
|
||
|
|
2. Rename project `mv project-template project-name`
|
||
|
|
3. Remove the `.git` directory (which points to this template repo): `rm -rf project-name/.git`
|
||
|
|
4. Change the name and repository URL of the `package.json`
|
||
|
|
5. Change this README
|
||
|
|
6. Add all of your code etc.
|