Skip to content

Commit

Permalink
Fix variable name (#984)
Browse files Browse the repository at this point in the history
  • Loading branch information
vertism authored Aug 29, 2024
1 parent 748d2dc commit 7d2eccc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ $ bin/setup
Create some demo teams

```
$ DOMAIN=fake.gov.uk be rake peoplefinder:data:demo
$ DOMAIN=fake.gov.uk bin/rake peoplefinder:data:demo
```

#### Running locally:
Expand Down
2 changes: 1 addition & 1 deletion config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class Application < Rails::Application

# We use the same list for readonly access and admin access (also need admin account)
config.admin_ip_ranges = ENV.fetch("IP_ALLOWLIST", "127.0.0.1")
config.ip_whitelist = ENV.fetch("IP_ALLOWLIST", "127.0.0.1")
config.readonly_ip_whitelist = ENV.fetch("IP_ALLOWLIST", "127.0.0.1")

config.assets.paths << Rails.root.join("vendor/assets/components")

Expand Down

0 comments on commit 7d2eccc

Please sign in to comment.