This is a simple application with basic setup of Doctrine and Nette.
You will need PHP 8.4+ and Composer and Git installed.
git clone git@github.com:nowdoc/2025-ai-sandbox.gitNow you have application clonned. It's time to install dependencies.
composer installNette application is configured in config/config.neon.
You can override parameters in config/local.neon.
The easiest way is to use php built-in web server.
## Docker development
make docker-up
# docker compose up
## Local development
# make dev
# php -S 0.0.0.0:8080 -t wwwThen visit http://0.0.0.0:8080 in your browser.
make phpstan- static analysismake cs- code style checkmake tests- run tests