Docker makes it easy to jump in and have a perfect environment for working on Wizard's Toolkit. Plus, Docker facilitates scaling through Kubernetes and other methods. Wizard's Toolkit provides what we think is an ideal environment, but since this is low-code, you are welcome to change any aspects you want.
The default Docker environment for Wizard's Toolkit as defined in docker-compose.yml contains:
To build, simply run in Terminal:
./WTK.sh
There is an alternative docker-composePG.yml file which contains the PostgreSQL version of Wizard's Toolkit. All the web pages are the same, but the database is PostgreSQL.
To run, rename the docker-compose.yml to docker-composeMySQL.yml then rename the docker-composePG.yml to docker-compose.yml. After that, build your Docker environment by simply running in Terminal:
./WTK.sh
The docker-composePG.yml contains:
If you need your web server to also process Python, a Docker container has been provided which contains all the images in the core MySQL container, plus an image with Python and Gunicorn. The port is not exposed to the public and is only accessible by the PHP pages via internal networking.
The docker-composePython.yml contains the following:
To use this, simply rename the docker-composePython.yml to docker-compose.yml. After that, build your Docker environment as normal or in Terminal simply run:
./STOP_CONTAINERS.sh ./WTK.sh
Demo pages have been provided as a prototype for connectivity between your WTK PHP pages and your Python file(s).
After creating an account to log in, go to:
http://127.0.0.1/demo/python.php
Log in, then click the Python Test links. These pass a parameter to /demo/getPython.php and display the results on the web page. The getPython.php page only contains the following:
<?PHP $pgSecurityLevel = 1; define('_RootPATH', '../'); require('../wtk/wtkLogin.php'); $pgStep = wtkGetPost('step'); // modify calling method to pass as many parameters as you want, then pass those to your Python page // wtk_python is your Docker Python image name $pgPythonURL = "http://wtk_python:5000/?step=$pgStep"; $pgResponse = file_get_contents($pgPythonURL); echo $pgResponse; exit; ?>
The Python code is all in the /python/app.py file. During Docker build, it is copied to an `/app` folder within the image, which is not accessible to the public but is accessible to the other images in your Docker `wizardstoolkit` container.
The associated files for the Python build are in the `/python` folder.
Currently, the `app.py` simply sends various responses depending on what parameters are sent. This is just a working prototype that you can build from.