-
Notifications
You must be signed in to change notification settings - Fork 0
/
cogserver-logicmoo.conf
69 lines (67 loc) · 2.77 KB
/
cogserver-logicmoo.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#
# cogserver.conf
# OpenCog CogServer configuration file.
#
# This file is usually installed either as `/etc/cogserver.conf` or as
# `/usr/local/etc/cogserver.conf` and is used by the cogserver if no
# other config file is specified.
#
# ------------------------------------------------------------
# Cogserver configuration. The cogserver listens to TCP/IPv4 port 17001
# by default. Change this to over-ride.
# SERVER_PORT = 17001
# ------------------------------------------------------------
# Logging configuration.
LOG_FILE = /tmp/cogserver.log
# Possible log levels are "error", "warn", "info", "debug" and "fine"
# LOG_LEVEL = debug
LOG_LEVEL = info
LOG_TO_STDOUT = false
# ------------------------------------------------------------
# CogServer shell prompt styles. The shell prompt is displayed after
# connecting to the cogserver TCP/IP port, e.g. by saying
# `telnet localhost 17001`.
#
# Option enabling ANSI color codes on terminal output. True by default.
# ANSI_ENABLED = true
#
# Prompt with ANSI color codes.
# ANSI_PROMPT = "[0;32mopencog[1;32m> [0m"
#
# This prompt is used when the telnet/terminal doesn't support ANSI.
# PROMPT = "opencog> "
#
# Prompt for the guile scheme shell exposed by the cogserver.
# ANSI_SCM_PROMPT = "[0;34mguile[1;34m> [0m"
#
# The guile prompt when telnet/terminal doesn't support ANSI.
# SCM_PROMPT = "guile> "
#
# ------------------------------------------------------------
# Cogserver dynamically-loadable modules.
#
# The core, basic modules are loaded by default. The `builtinreqs`
# provide the most basic support for the cogserver network shell.
# The `scheme-shell`, `sexpr-shell` and `py-shell` provide scheme,
# s-expression and python shells, respectively, for the cogserver.
#
# For OSX, the .so suffix will be auto-converted to .dylib
# MODULES = opencog/modules/libbuiltinreqs.so,
# opencog/modules/libscheme-shell.so,
# opencog/modules/libsexpr-shell.so,
# opencog/modules/libpy-shell.so,
#
# ------------------------------------------------------------
# Cogserver agents module. The agents module is loaded by default.
# It has several configurable paramters. This does something. (What?)
# SERVER_CYCLE_DURATION = 100
#
# ------------------------------------------------------------
# Optional modules, not enabled by default.
# These are not provided by the cogserver; these are external
# components, and are mentioned here only for backward-compatibility.
#
# opencog/modules/libatomspacepublishermodule.so
# opencog/modules/libdimensionalembedding.so
#
# ------------------------------------------------------------