Skip to content

Latest commit

 

History

History
41 lines (38 loc) · 1.03 KB

installation-native.md

File metadata and controls

41 lines (38 loc) · 1.03 KB

Installation native

Every components which are necessary to run es-sandbox could be installed native in your system.

Requirements:

Installation

  1. Clone repository:
    git clone [email protected]:lzakrzewski/es-sandbox.git
    
  2. Go to project directory:
    cd es-sandbox
    
  3. Install dependencies with composer:
    composer install
    
  4. Composer will ask you about configuration of MySQL and Event-Store, so provide it. Example:
parameters:
    secret: ThisTokenIsNotSoSecretChangeIt
    event_store_host: 172.17.0.124
    event_store_port: 2113
    event_store_user: admin
    event_store_password: changeit
    database_host: 172.17.0.123
    database_port: 3306
    database_name: es-sandbox
    database_user: root
    database_password: changeit
  1. Setup database MySQL
composer setup-database