drago-ex / project
The basis for new projects on Drago Extension.
Installs: 73
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=8.3 <9
- drago-ex/application: ^1.0
- drago-ex/bootstrap: ^1.0
- drago-ex/components: ^1.0
- drago-ex/translator: ^1.0
- latte/latte: ^3.0
- nette/robot-loader: ^4.0
- tracy/tracy: ^2.9
Requires (Dev)
- phpstan/phpstan-nette: ^1.2.9
README
Basis for new modules projects on Drago Extension
Technology
- PHP 8.3 or higher
- composer
- docker
- node.js
Installation
composer create-project drago-ex/project
Basic information
Basic package for applications where the basis for Bootstrap, Vite, Docker, Naja is already prepared.
You can find all commands in package.json
like running Docker or Vite.
First, run npm install
Docker
Docker is set to the minimum configuration for running the project.
If we want to add, for example, MySQL, we add these lines to the dockerfile:
# php extensions RUN docker-php-ext-install mysqli RUN docker-php-ext-enable mysqli
And add these lines to docker-compose.yml
to configure the MySQL server as needed:
# database db: image: library/mariadb:latest command: --character-set-server=utf8 --collation-server=utf8_unicode_ci restart: always environment: MYSQL_ROOT_PASSWORD: root MYSQL_DATABASE: app MYSQL_USER: super MYSQL_PASSWORD: pass volumes: - ./docker/mysql/:/var/lib/mysql ports: - '6033:3306'
As for further configuration on Docker, you can find it in the documentation.
If we use database, we can use Entity generation
composer require drago-ex/generator --dev
Use the command to copy the necessary files: copy .\vendor\drago-ex\generator\bin\* bin
Then edit the configuration including the database in bin/config.neon
And run the command: php .\bin\generator app:entity
Info
The project with the database set up in this way is available in the database-project
branch.