Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 630 Bytes

README.md

File metadata and controls

21 lines (20 loc) · 630 Bytes

SYMFONY 4 test task

  1. Install project:
$ git clone https://github.com/alexsobolenko/symfony4-test.git your_project
$ cd your_project
  1. Configure DATABASE_URL parameter in .env file.
  2. Create database and run server:
    • First run: make first-run
    • Another: make run
  3. For check code run: make check-syntax
  4. Use docker:
    1. Configure environment in docker/env.conf
    2. For first run:
      • docker-compose up -d --build
      • docker exec php-container make docker-prepare
    3. Another one:
      • docker-compose up -d
    4. Stop docker:
      • docker-compose down