This is the repository for both the website and the generator over at PHPDocker.io, opensourced on an Apache 2.0 license and open for anyone to contribute as they please
The usual Github model of forking and pull request. Branch from and open PRs from the dev branch. There are no unit tests to keep an eye on, but until I get a functional suite testing ready, code merges can take a while.
All I ask is to thoroughly test, manually, any changes made to the generators. You will need to run the containers with example apps to ensure they're working. Functional tests in the future will do precisely this, with a combination of PHP versions, frameworks, databases, etc. Setting this up is an area you could contribute on.
If you would like to add new containers, please either base them on alpine images, or debian:jessie as these are in use for the generated environments and will optimise deployment and provisioning to users.
Please follow PSR code formatting standards, and Symfony best practices and, in general, do what you see already done in the current code.
Please note everything is really in very early stages; if you see anything at all you can improve upon, please do so.
Project is given with a PHPDocker.io generated environment.
- Clone
- Copy
app/config/parameters.yml.distintoapp/config/parameters.yml composer installbower installphp bin/console assets:install --symlink --relative- cd into the
phpdockerfolder and eitherdocker-compose up -dorvagrant up. More specific information on phpdocker/README.md. - You can then head off to the
/generatorroute; you'll need to runbin/console doctrine:schema:createwithin the PHP container (or use theconsolescript at the root of the project) to avoid SQL errors on the homepage
Note: you'll notice a console script at the root of the project. It does some voodoo to run bin/console within the container. There are several limitations however:
- Needs fixing to properly work through vagrant as the
.vagrantfolder is not at the root of the project - It is not fully interactive. Any symfony commands that require user prompt after running the command (for instance, doctrine migrations) will not work
- We really should bundle it on the generated environments for other people to use