https://github.com/faks/grcp-trial
https://github.com/faks/grcp-trial
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/faks/grcp-trial
- Owner: Faks
- Created: 2022-09-12T17:23:12.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-12T17:23:27.000Z (over 2 years ago)
- Last Synced: 2025-01-14T11:16:11.417Z (5 months ago)
- Language: PHP
- Size: 991 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Zend Framework test-assignment
- PHP ^7.3 with pdo_mysql module
- MySQL
- Doctrine
- Vue.js### Setup (non-docker)
##### * Install the framework and all the dependencies
composer install##### * Use your own database credentials
mysql -uadmin -e "CREATE DATABASE test_ek_2021;"##### * Edit config/autoload/local.php (remove the .dist filename extension if it doesnt exist)
edit database login credentials in config/autoload/local.php under "connection"##### * Generate DB schema from entities (annotation metadata)
php vendor/bin/doctrine orm:schema-tool:create##### * Use php built in web server. This shortcut is defined in composer.json
composer serve