Skip to content
Advertisement

How can I run php artisan serve using .env.production?

I have a Laravel Web Application, and it works just fine locally, using a local .env file that references the local database.

I have the same Laravel Web Application deployed in production, where I find a .env, which is different from the one that I use locally.

Both the scenarios work perfectly, but when I wanted to perform a test with the remote database (that I can access from my local IP address), I copied the remote .env and renamed it .env.production.

How can I run the php artisan serve using the .env.production ?

The php artisan serve help states that adding a --env parameter should make the trick, as you can see from the command result below

JavaScript

but the command php artisan serve --env=production still loads the local database.

What am I doing wrong ?

Advertisement

Answer

After some tests I found a working solution in a Laracast Forum, giving credits to a Laravel.io post that consists into running the following command:

JavaScript

This causes the .env.production to be loaded and used by the local server, as needed.

I post this here hoping it will be useful to someone in my same condition.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement