From ca41e2b7f3c6733bcc042ae8f505ba0671833159 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 29 Jun 2021 07:59:12 -0700 Subject: [PATCH] Fixed typo in ansible playbook Signed-off-by: snipe --- ansible/ubuntu/vagrant_playbook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/ubuntu/vagrant_playbook.yml b/ansible/ubuntu/vagrant_playbook.yml index dd25b2e0c2..44b1a6ef00 100755 --- a/ansible/ubuntu/vagrant_playbook.yml +++ b/ansible/ubuntu/vagrant_playbook.yml @@ -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