jsdecena / laracom

Laravel FREE E-Commerce Software
https://jsdecena.github.io/laracom
1.91k stars 861 forks source link

Addition to README about .env files #292

Closed ysknsid25 closed 1 year ago

ysknsid25 commented 1 year ago

About .emv file

On the Dockerfile, project/.env.example . /.env is executed.

However, in docker-compose.yml . /project:/var/www is fileshared, .env is not generated and the original .env.example and .env.test are reflected in the container.

Therefore, developers need to rename .env.example to .env before launching the container or else php artisan migrate --seed will result in an error.

This has been added to the README.

P.S

Is it possible to add me to the Contirubutors in the README?

image

jsdecena commented 1 year ago

Why not rename the .env.example to .env before running the container? Will that work?

jsdecena commented 1 year ago

The contributors are automatically populated when they fix something in the repository.

ysknsid25 commented 1 year ago

Why not rename the .env.example to .env before running the container? Will that work?

Yes, that will work.