This repository provides a demo application server for the SWI-Prolog pengines package. An online version of this server is available at https://pengines.swi-prolog.org.
The application server currently hosts two applications:
-
Scratchpad allows you to create interactive web applications that query Prolog. This demonstrates how pengines are supposed to be used: Prolog acts as a modular query language, while JavaScript handles the results of Prolog queries to vizualise the result.
-
SWISH provides a Prolog environment for trying Prolog, teaching, make a piece of code available for inspection to others, collaboratively solve a problem, etc. SWISH runs also as a stand-alone server
Running this software typically requires the latest development
version of SWI-Prolog. After cloning the pengines
repository, the server
can be started by loading run.pl
into SWI-Prolog. On MS-Windows,
this implies opening run.pl
in the explorer. On Unix systems, run
swipl run.pl
By default, only Scratchpad is available. See below for adding SWISH.
First, add the swish submodule by running this command
git submodule update --init
Next, install bower for your platform, go to
the directory apps/swish
and run
bower install
make src
Finally, restart the pengines server.
A Docker file is available from https://github.com/ninjarobot/pengines-dockerfile