From 81c54dc5ea8e3dfc5049924e88209b8bf21692bb Mon Sep 17 00:00:00 2001 From: Mali Oz Date: Tue, 28 May 2024 14:51:18 -0300 Subject: [PATCH] using .env.cypress as per laracasts --- .env.cypress | 2 +- .github/workflows/cypress.yml | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.env.cypress b/.env.cypress index 0ae90f6..20868dd 100644 --- a/.env.cypress +++ b/.env.cypress @@ -1,6 +1,6 @@ APP_NAME=notaR APP_ENV=local -APP_KEY= +APP_KEY=base64:ikjUI2Mbr1dKGd3fvDDB+ldw4qZ9bs3qQcySGFO5axQ= APP_DEBUG=true APP_URL=http://0.0.0.0:8000 APP_SCHEME=http diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index c5cba40..e344e39 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -12,12 +12,8 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Copy .env - run: php -r "file_exists('.env') || copy('.env.cypress', '.env');" - name: Install run: ./deploy.sh - - name: Generate key - run: docker exec notar_app_1 php artisan key:generate - name: Create Database run: docker exec -t notar_app_1 php artisan migrate - name: Create admin user