The context is I currently working with laravel framework. Is it possible if I want to move all configs in .env file into system environment variables? so I don't need .env file anymore. So I will do:
export APP_NAME=Laravel
export APP_ENV=local
export APP_KEY=
export APP_DEBUG=true
export APP_URL=http://localhost
...
then remove the .env file. What should I do to make laravel read all configurations from exported environment variables instead of read from .env file? Thank you