Set the path for your hosting:
<path to project>/public
Use the database name as in your config:
for example: "framework"
Set as in the "database.php.dist" file (check "config"):
'db_host' => 'localhost'
'db_port' => 3306
'db_user' => '<user>'
'db_password' => '<password>'
'db_database' => 'framework'
Change the permissions of the "settings.php" file to 666:
<path to project>/config/settings.php
Open the url below in your browser:
https://<domain.com>
cd <path to project>
docker-compose up -d
docker exec -it fwe-php-apache bash
cd /var/www
ls -l
chmod 777 /var/www/html
chown -R www-data:www-data /var/www/html
ls -l
exit
http://localhost:8000
http://localhost:8001
docker-compose down
docker exec -it fwe-php-apache bash
cd /var/www/html
composer install
docker exec -it fwe-php-apache vendor/bin/phpunit tests
Copyright (c) 2024-2026 EEQSOFT