diff --git a/docs/setup/hybrid.md b/docs/setup/hybrid.md index c136d483e6a..f6e5e8badbb 100644 --- a/docs/setup/hybrid.md +++ b/docs/setup/hybrid.md @@ -25,6 +25,7 @@ redis: *Note: If you have local instances of Postgres or Redis that were only for use by vets-api, you can stop them to save system resources.* + ## Running Deps Prior to EKS, ClamAV (the virus scanner) was deployed in the same process as Vets API. With EKS, ClamAV has been extracted out into it’s own service. Locally you can see the docker-compose.yml config for clamav. diff --git a/docs/setup/native.md b/docs/setup/native.md index 4a17567d022..e7d39dfbce7 100644 --- a/docs/setup/native.md +++ b/docs/setup/native.md @@ -19,6 +19,7 @@ We suggest using a Ruby version manager such as `rbenv`, `asdf`, `rvm`, or `chru If the repo's Ruby version is updated later, you will need to install the newer ruby (i.e., `rvm install `) which is located in `.ruby-version` + ### RVM Troubleshooting If you see an error like `Error running '__rvm_make -j10'` while installing a ruby version, this usually occurs because of a mismatch with the openssl package. @@ -88,6 +89,7 @@ track_activity_query_size = 2048 **Make sure to migrate your database to enable the [pg_stat_statements extension](https://github.com/department-of-veterans-affairs/vets-api/blob/master/db/migrate/20210507122840_add_stats_extension.rb)** + ## Settings and configuration We use the `config` gem to manage settings in the application. Local settings for each developer should be managed in your own local `config/settings.local.yml` file, which by default can override the standard configuration _and_ is excluded from source control so the settings can persist. diff --git a/docs/setup/running_natively.md b/docs/setup/running_natively.md index c45086412b6..794e2a77382 100644 --- a/docs/setup/running_natively.md +++ b/docs/setup/running_natively.md @@ -26,6 +26,7 @@ After that, follow the native instructions and run `foreman start -m all=1` #### Option 2: [See hybrid setup](https://github.com/department-of-veterans-affairs/vets-api/blob/k8s/docs/setup/hybrid.md) + ### Running tests - `bundle exec rake spec` - Run the entire test suite ( for `rspec spec`). Test coverage statistics are in `coverage/index.html`.