Skip to content

Commit

Permalink
Merge pull request #8 from fabianoflorentino/development
Browse files Browse the repository at this point in the history
Development to Main
  • Loading branch information
fabianoflorentino authored Mar 5, 2024
2 parents f071df1 + af3ad9f commit 1b31e42
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/brakeman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,20 @@ on:
branches:
- main
- development
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
- '.github/**'
pull_request:
branches:
- main
- development

paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
- '.github/**'
jobs:
brakeman:
name: Brakeman Security Scan
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,20 @@ on:
branches:
- main
- development
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
- '.github/**'
pull_request:
branches:
- main
- development

paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
- '.github/**'
jobs:
rspec:
name: Unit Tests with RSepc
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,20 @@ on:
branches:
- main
- development
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
- '.github/**'
pull_request:
branches:
- main
- development

paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
- '.github/**'
jobs:
rubocop:
name: Rubocop Linter
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,18 @@ graph LR
load_balancer(Load Balancer)
database[(Database)]
subgraph Proxy
load_balancer
end
subgraph Application
load_balancer
black_pearl_api_1
black_pearl_api_2
end
subgraph Data
database
end
Expand All @@ -38,6 +46,8 @@ graph LR
class user default
class Application application
class Proxy application
class Data application
class load_balancer load_balancer
class black_pearl_api_1 black_pearl
class black_pearl_api_2 black_pearl
Expand Down
7 changes: 7 additions & 0 deletions lefthook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ pre-commit:
rspec:
run: docker compose exec -it blackpearl /bin/sh -c "bundle exec rspec"
description: "Run RSpec"

ignore:
pattern:
- 'README.md'
- 'LICENSE'
- 'docs/**'
- '.github/**'

0 comments on commit 1b31e42

Please sign in to comment.