Merge pull request #9768 from svpernova09/vagrant-ansible-fix

Fix APP_ENV/APP_DEBUG typo overwriting the APP_ENV in Vagrant Playbook
This commit is contained in:
snipe 2021-06-29 07:57:14 -07:00 committed by GitHub
commit 86b3f8349a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -199,7 +199,7 @@
- { regexp: '^DB_PASSWORD=', line: 'DB_PASSWORD=vagrant' }
- { regexp: '^APP_URL=', line: "APP_URL=http://{{ fqdn }}" }
- { regexp: '^APP_ENV=', line: "APP_ENV=development" }
- { regexp: '^APP_DEBUG=', line: "APP_ENV=true" }
- { regexp: '^APP_DEBUG=', line: "APP_DEBUG=true" }
- name: Generate application key
shell: "php {{ app_path }}/artisan key:generate --force"
- name: Artisan Migrate