7.6 Running the server

(run #:host #f #:port #f #:debug #f #:use-db? #f
     #:dbd #f #:db-username #f #:db-passwd #f #:db-name #f)

keywords with the value #f, as default, will get the values from the config file.

But you can define them as well.

#:host the hostname.

#:port the socket port of the server.

#:debug set #t if you want to enable debug mode. Logs will be more verbose.

#:use-db? set #t if you want to use DB, and GNU Artanis will initialize DB connections.

#:dbd choose a dbd. These are the supported three: mysql, postgresql, and sqlite3.

#:db-username the username of your DB server.

#:db-passwd the DB password for the user above.

#:db-name the DB name to use.