Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 533 Bytes

development.md

File metadata and controls

30 lines (22 loc) · 533 Bytes

Installing in DEV environment

Using container environment

# copy env file
$ cp .env.example .env

# run makefile command to install
$ make install

# run makefile command to generate migrations
$ make migrate

Without container environment

# copy env file
$ cp .env.example .env

# run docker-compose to generate database
$ docker-compose up -d --build

# run command to generate migrations
$ yarn migration:run

# run app
$ yarn dev

For more commands with makefile check Makefile