
README
======

General
_______

This demonstration package contains the cyboi interpreter
pre-compiled for 64-Bit-Linux and some example applications.

Change into the package directory, for example:

cd /home/xy/cybop/demo

Execute an application, for example:

./cyboi hello/cli/run.cybol

That is it.

Webserver
_________

If the cybol application is a web server delivering
static files, then type in a webbrowser:

http://localhost:1971/index.html

If the cybol application is a web server dynamically
generating content, then type in a webbrowser:

http://localhost:1971/?action=send-index

The standard port 80 got replaced by 1971, since reserved
service ports 0..1023 can sometimes only be used when running
the cybol application as "root" user (administrator).
In such cases, the cyboi interpreter might return the error:

Error: Could not startup bsd socket bind. An error occured.
EACCES: 13

The "nmap" tool may be used to find out about
active service ports, for example:

nmap localhost

