Installation
To run Botyard on your machine, there are two ways: using Docker (recommended) or building it yourself using the Go compiler for server and Node.js with npm for web client.
Docker
-
Clone Botyard repository
-
Setup environment variables
Next you need an
.env
file with some secret keys. You can create it manually reading this, or use a prepared script that will generate it for you by the command below: -
Change the standard configuration (optional)
You can modify
config/botyard.config.json
file to setting the necessary information about your project and limits.See full reference about config here.
-
Build a docker image and start a new container
And finally go to http://localhost:7007 to see the result.
To stop the container, use this:
Build from source
-
Clone Botyard repository
-
Build client & server
-
Setup environment variables
Next you need an
.env
file with some secret keys. You can create it manually reading this, or use a prepared script that will generate it for you by the command below: -
Change the standard configuration (optional)
You can modify
config/botyard.config.json
file to setting the necessary information about your project and limits.See full reference about config here.
-
Run a compiled binary
And finally go to http://localhost:7007 to see the result.