From b40905497cfb7d93b206b00c8706854308fc167f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilien=20Pressens=C3=A9?= Date: Wed, 4 Dec 2024 14:04:53 +0100 Subject: [PATCH] Update Dev Container configuration and README; remove default Capybara driver on local development to allow hybrid dev envs : local or containerized --- .devcontainer/compose.yaml | 2 +- README.md | 2 +- spec/support/capybara.rb | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.devcontainer/compose.yaml b/.devcontainer/compose.yaml index 2485314..0dc06ac 100644 --- a/.devcontainer/compose.yaml +++ b/.devcontainer/compose.yaml @@ -12,7 +12,7 @@ services: command: sleep infinity environment: - SELENIUM_REMOTE_HOST: selenium + SELENIUM_REMOTE_HOST: true # Uncomment the next line to use a non-root user for all processes. # user: vscode diff --git a/README.md b/README.md index 26d9d2b..b52be93 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ When Benefactorum is feature-complete, here's what you'll be able to do. - **Vite**: Efficient asset bundling and faster development builds. - **Kamal**: Simplified deployment to Scaleway VPS. - **GitHub Actions**: Manages CI/CD workflows for testing and deployment. -- **Dev Containers**: Ready-to-use, containerized development environment. +- **Dev Container**: Ready-to-use, containerized development environment.
## Installation & Setup diff --git a/spec/support/capybara.rb b/spec/support/capybara.rb index f1a5650..d5ebef1 100644 --- a/spec/support/capybara.rb +++ b/spec/support/capybara.rb @@ -24,8 +24,6 @@ Capybara.server_port = 3001 Capybara.app_host = "http://rails-app:3001" driven_by :remote_chrome - else - driven_by :selenium_chrome_headless end end end