- Git
- Docker
- Docker-Compose
$ git clone https://github.com/hironeko/projectX.git
$ cd projectX
$ cp env.example .env
## .env change language
LANGUAGE=php
# build php
$ docker-compose build app nginx
# use host mysql
# DB host name (case mac)
# host naem is "docker.for.mac.localhost"
The working directory is the folder for each language in the workspace directory.
├── README.md
├── db
│ └── data
├── docker
│ ├── database
│ ├── language
│ └── middleware
├── docker-compose.yml
├── env-example
└── workspace
├── elixir
├── php
└── ruby