serve-chat
If you are beginning your journey with Senzing,
please start with Senzing Quick Start guides.
You are in the Senzing Garage where projects are "tinkered" on.
Although this GitHub repository may help you understand an approach to using Senzing,
it's not considered to be "production ready" and is not considered to be part of the Senzing product.
Heck, it may not even be appropriate for your application of Senzing!
⚠ WARNING: serve-chat is still in development ⚠ _
At the moment, this is "work-in-progress" with Semantic Versions of 0.n.x
.
Although it can be reviewed and commented on,
the recommendation is not to use it yet.
Synopsis
The serve-chat repository serves as a starting point for new repositories hosting Go code.
It also shows best practices that can be retro-fitted into existing repositories hosting Go code.
Overview
Install
-
Visit Releases page.
-
For the desired versioned release, in the "Assets" section,
download the appropriate installation package.
- Use
.deb
file for Debian, Ubuntu and
others
- Use
.rpm
file for Red Hat, CentOS, openSuse and
others.
-
✏ Example installation for .deb
file:
sudo apt install ./serve-chat-0.0.0.deb
-
✏ Example installation for .rpm
file:
sudo yum install ./serve-chat-0.0.0.rpm
Using Docker
-
Run Docker image against local SQLite database.
Example:
docker run \
--env SENZING_TOOLS_ENABLE_ALL=true \
--env SENZING_TOOLS_DATABASE_URL=sqlite3://na:na@/tmp/sqlite/G2C.db \
--publish 8262:8262 \
--rm \
--volume /tmp/sqlite:/tmp/sqlite \
senzing/serve-chat
-
Open browser on localhost:8252
References
- API documentation
- Development
- Errors
- Examples