Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dev, add ingress rules for stage/prod #1090

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ references:

test_container_config: &test_container_config
docker:
- image: circleci/ruby:2.6.3-node-browsers
- image: circleci/ruby:2.7.2-node-browsers
environment:
RAILS_ENV: test
PGHOST: 127.0.0.1
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
command: 'sudo npm install -g npm@latest'
- run:
name: Install GOV.UK frontend modules
command: npm install
command: 'sudo npm install -g npm@latest'
- run: bundle check --path vendor/bundle || bundle install --path vendor/bundle
- save_cache:
key: prison-visits-public-{{ checksum "Gemfile.lock" }}
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.3
2.7.1
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://rubygems.org'
ruby '2.6.3'
ruby '2.7.1'

gem 'rails', '~> 5.2'

Expand Down
Loading