Skip to content

Commit

Permalink
Merge branch 'main' into GO-385-upravit-modal-pre-vyber-tagov
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasJanik committed Dec 7, 2023
2 parents 16c68e5 + 6040637 commit c5cfb6c
Show file tree
Hide file tree
Showing 212 changed files with 2,278 additions and 1,473 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ yarn-debug.log*
!/app/assets/builds/.keep

.DS_Store

coverage

10 changes: 4 additions & 6 deletions .gitlab/auto-deploy-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,13 @@ ingress:
livenessProbe:
initialDelaySeconds: 5
timeoutSeconds: 5
probeType: "exec"
command:
- "true"
probeType: "httpGet"
path: "/health"
readinessProbe:
initialDelaySeconds: 5
timeoutSeconds: 10
probeType: "exec"
command:
- "true"
probeType: "httpGet"
path: "/health"
resources:
requests:
memory: 600Mi
Expand Down
12 changes: 5 additions & 7 deletions .gitlab/prod-auto-deploy-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,13 @@ ingress:
livenessProbe:
initialDelaySeconds: 5
timeoutSeconds: 5
probeType: "exec"
command:
- "true"
readinessProbe:
probeType: "httpGet"
path: "/health"
eadinessProbe:
initialDelaySeconds: 5
timeoutSeconds: 10
probeType: "exec"
command:
- "true"
probeType: "httpGet"
path: "/health"
resources:
requests:
memory: 700Mi
Expand Down
6 changes: 6 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@ Style/WordArray:
Enabled: false
Style/Lambda:
Enabled: false
Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes
Style/ExplicitBlockArgument:
Enabled: false
Rails/Validation:
Enabled: false
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ruby 3.2.2
nodejs 18.13.0
nodejs 20.10.0
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@
],
"[erb]": {
"editor.defaultFormatter": "Jota0222.multi-formatter"
},
"[markdown]": {
"editor.defaultFormatter": null
},
"[ruby]": {
"editor.defaultFormatter": "Shopify.ruby-lsp"
}
}
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ source 'https://rubygems.org'

ruby '3.2.2'

gem 'rails', '~> 7.0'
gem 'rails', '~> 7.1'
gem 'rails-i18n'

gem 'pg', '~> 1.0'
gem 'with_advisory_lock'

gem 'puma', '~> 5.0'
gem 'puma', '~> 6.0'

gem 'turbo-rails'

Expand Down Expand Up @@ -75,4 +75,5 @@ group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'webmock'
gem 'simplecov', require: false
end
Loading

0 comments on commit c5cfb6c

Please sign in to comment.