Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/data/*.db
/data/igs/*.tgz
/data/redis/*.rdb
/data/redis/*.aof
/data/redis/appendonlydir
Expand Down
25 changes: 13 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
ips_test_kit (0.11.0)
inferno_core (>= 0.6.2)
inferno_core (>= 0.6.7)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -132,7 +132,7 @@ GEM
domain_name (~> 0.5)
i18n (1.14.7)
concurrent-ruby (~> 1.0)
inferno_core (0.6.3)
inferno_core (0.6.7)
activesupport (~> 6.1.7.5)
base62-rb (= 0.3.1)
blueprinter (= 0.25.2)
Expand Down Expand Up @@ -170,11 +170,11 @@ GEM
rexml (>= 3.3.9)
logger (1.6.6)
method_source (1.1.0)
mime-types (3.6.0)
mime-types (3.6.1)
logger
mime-types-data (~> 3.2015)
mime-types-data (3.2025.0204)
minitest (5.25.4)
mime-types-data (3.2025.0318)
minitest (5.25.5)
multi_json (1.15.0)
multi_xml (0.7.1)
bigdecimal (~> 3.1)
Expand All @@ -186,11 +186,11 @@ GEM
mustermann (= 1.1.2)
netrc (0.11.0)
nio4r (2.7.4)
nokogiri (1.18.2-arm64-darwin)
nokogiri (1.18.5-arm64-darwin)
racc (~> 1.4)
nokogiri (1.18.2-x86_64-darwin)
nokogiri (1.18.5-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.18.2-x86_64-linux-gnu)
nokogiri (1.18.5-x86_64-linux-gnu)
racc (~> 1.4)
oauth2 (1.4.11)
faraday (>= 0.17.3, < 3.0)
Expand All @@ -213,13 +213,13 @@ GEM
puma (5.6.9)
nio4r (~> 2.0)
racc (1.8.1)
rack (2.2.11)
rack (2.2.13)
rack-test (2.2.0)
rack (>= 1.3)
rake (13.2.1)
rdoc (6.7.0)
psych (>= 4.0.0)
redis-client (0.23.2)
redis-client (0.24.0)
connection_pool
reline (0.5.9)
io-console (~> 0.5)
Expand All @@ -228,7 +228,7 @@ GEM
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
rexml (3.4.0)
rexml (3.4.1)
rouge (4.5.1)
rspec (3.13.0)
rspec-core (~> 3.13.0)
Expand Down Expand Up @@ -278,12 +278,13 @@ GEM
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
zeitwerk (2.7.1)
zeitwerk (2.7.2)

PLATFORMS
arm64-darwin-21
arm64-darwin-22
arm64-darwin-23
arm64-darwin-24
x86_64-darwin-20
x86_64-darwin-22
x86_64-darwin-23
Expand Down
Empty file added data/igs/.keep
Empty file.
26 changes: 13 additions & 13 deletions docker-compose.background.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ services:
# Negative values mean sessions never expire, 0 means sessions immediately expire
SESSION_CACHE_DURATION: -1
volumes:
- ./lib/ips/igs:/home/igs
- ./data/igs:/app/igs
# To let the service share your local FHIR package cache,
# uncomment the below line
# - ~/.fhir:/home/ktor/.fhir
# validator_service:
# image: infernocommunity/fhir-validator-service
# # Update this path to match your directory structure
# volumes:
# - ./lib/ips/igs:/home/igs
# fhir_validator_app:
# image: infernocommunity/fhir-validator-app
# depends_on:
# - validator_service
# environment:
# EXTERNAL_VALIDATOR_URL: http://localhost/validatorapi
# VALIDATOR_BASE_PATH: /validator
# validator_service:
# image: infernocommunity/fhir-validator-service
# # Update this path to match your directory structure
# volumes:
# - ./data/igs:/app/igs
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# - ./data/igs:/app/igs
# - ./data/igs:/home/igs

# fhir_validator_app:
# image: infernocommunity/fhir-validator-app
# depends_on:
# - validator_service
# environment:
# EXTERNAL_VALIDATOR_URL: http://localhost/validatorapi
# VALIDATOR_BASE_PATH: /validator
nginx:
image: nginx
volumes:
Expand Down
2 changes: 1 addition & 1 deletion ips_test_kit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
spec.description = 'IPS Tests'
spec.homepage = 'https://github.com/inferno-framework/ips-test-kit'
spec.license = 'Apache-2.0'
spec.add_runtime_dependency 'inferno_core', '>= 0.6.2'
spec.add_runtime_dependency 'inferno_core', '>= 0.6.7'
spec.add_development_dependency 'database_cleaner-sequel', '~> 1.8'
spec.add_development_dependency 'factory_bot', '~> 6.1'
spec.add_development_dependency 'rspec', '~> 3.10'
Expand Down