Lumen Micro Framework => php artisan key:generate

后端 未结 12 825
遥遥无期
遥遥无期 2021-01-30 00:59

I\'m trying out the PHP micro Framework Lumen (from Laravel).

One of my first steps was to look into the .env.example file and make a copy of it to have my

12条回答
  •  一生所求
    2021-01-30 01:27

    For me the easiest way to generate a Lumen key is typing on console one of these commands:

    date | md5
    date | md5sum
    

    or

    openssl rand -base64 24

    depending of your environment. In my case, I aways use date | md5 on mac

提交回复
热议问题