-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #781 from bcgov/release/0.5.4
Release/0.5.4
- Loading branch information
Showing
396 changed files
with
9,259 additions
and
3,535 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# .dockerignore | ||
|
||
.env |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#THIS IS THE BAREBONES .ENV TO RUN DOCKER NOT INCLUDING THE RELATED SERVICES DEFINED IN DOCKER_COMPOSE.YML | ||
#OTHER SERVICES LIKE EMAIL / STORAGE / COMPLIANCE PLEASE ADD AS REQUIRED | ||
|
||
KEYCLOAK_SECRET= | ||
KEYCLOAK_CLIENT= | ||
KEYCLOAK_AUTH_URL= | ||
|
||
FROM_EMAIL="no-reply@bc.gov.ca" | ||
SESSION_TIMEOUT_MINUTES=360 | ||
|
||
# Step code - You can remove this if you are forking the repo, but need to remove subsequent step cod related features. | ||
MIN_ENERGY_STEP=3 | ||
MAX_ENERGY_STEP=5 | ||
MIN_ZERO_CARBON_STEP=1 | ||
MAX_ZERO_CARBON_STEP=4 | ||
|
||
# Dev Only, we disable compliance checks by default | ||
RUN_COMPLIANCE_ON_SAVE=false | ||
|
||
VITE_BCEID_URL="https://www.development.bceid.ca" | ||
VITE_BASIC_BCEID_REGISTRATION_URL="https://www.development.bceid.ca/register/basic/account_details.aspx?type=regular&eServiceType=basic" | ||
VITE_BUSINESS_BCEID_REGISTRATION_URL="https://www.development.bceid.ca/register/business/getting_started/getting_started.aspx" | ||
VITE_SITEMINDER_LOGOUT_URL="https://logontest7.gov.bc.ca/clp-cgi/logoff.cgi" | ||
VITE_KEYCLOAK_LOGOUT_URL="https://dev.loginproxy.gov.bc.ca/auth/realms/standard/protocol/openid-connect/logout" | ||
VITE_POST_LOGOUT_REDIRECT_URL='http://localhost:3000' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
db/templates/Core[[:space:]]Permit[[:space:]]Requirements[[:space:]]List.xlsx filter=lfs diff=lfs merge=lfs -text | ||
*.pdf filter=lfs diff=lfs merge=lfs -text | ||
|
||
# Force LF line endings for all Ruby files | ||
*.rb text eol=lf | ||
|
||
# Force LF line endings for shell scripts | ||
*.sh text eol=lf | ||
|
||
# Force LF line endings for all files in the bin directory | ||
bin/* text eol=lf | ||
|
||
# Automatically normalize text files | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +0,0 @@ | ||
# Ignore auto-generated files | ||
db/schema.rb | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,171 @@ | ||
AllCops: | ||
DisplayCopNames: true | ||
DisplayStyleGuide: true | ||
NewCops: enable | ||
SuggestExtensions: false | ||
TargetRubyVersion: 3.2 | ||
Exclude: | ||
- "{.git,.github,.ruby-lsp,bin,coverage,doc,pkg,sorbet,spec,test/fixtures,vendor,tmp}/**/*" | ||
- test.rb | ||
|
||
Gemspec/DevelopmentDependencies: | ||
Enabled: false | ||
|
||
Layout/LineLength: | ||
Max: 80 | ||
|
||
Lint/AmbiguousBlockAssociation: | ||
Enabled: false | ||
|
||
Lint/AmbiguousOperatorPrecedence: | ||
Enabled: false | ||
|
||
Lint/AmbiguousRange: | ||
Enabled: false | ||
|
||
Lint/BooleanSymbol: | ||
Enabled: false | ||
|
||
Lint/Debugger: | ||
Enabled: false | ||
|
||
Lint/DuplicateBranch: | ||
Enabled: false | ||
|
||
Lint/EmptyBlock: | ||
Enabled: false | ||
|
||
Lint/InterpolationCheck: | ||
Enabled: false | ||
|
||
Lint/MissingSuper: | ||
Enabled: false | ||
|
||
Lint/NonLocalExitFromIterator: | ||
Enabled: false | ||
|
||
Lint/RedundantRequireStatement: | ||
Enabled: false | ||
|
||
Lint/RescueException: | ||
Enabled: false | ||
|
||
Lint/SuppressedException: | ||
Enabled: false | ||
|
||
Lint/UnderscorePrefixedVariableName: | ||
Enabled: false | ||
|
||
Lint/UnusedMethodArgument: | ||
AllowUnusedKeywordArguments: true | ||
|
||
Metrics: | ||
Enabled: false | ||
|
||
Naming/MethodName: | ||
Enabled: false | ||
|
||
Naming/MethodParameterName: | ||
Enabled: false | ||
|
||
Naming/RescuedExceptionsVariableName: | ||
PreferredName: error | ||
|
||
Naming/VariableNumber: | ||
Enabled: false | ||
|
||
Security/Eval: | ||
Enabled: false | ||
|
||
Style/AccessorGrouping: | ||
Enabled: false | ||
|
||
Style/Alias: | ||
Enabled: false | ||
|
||
Style/CaseEquality: | ||
Enabled: false | ||
|
||
Style/CaseLikeIf: | ||
Enabled: false | ||
|
||
Style/ClassVars: | ||
Enabled: false | ||
|
||
Style/CombinableLoops: | ||
Enabled: false | ||
|
||
Style/DocumentDynamicEvalDefinition: | ||
Enabled: false | ||
|
||
Style/Documentation: | ||
Enabled: false | ||
|
||
Style/EndBlock: | ||
Enabled: false | ||
|
||
Style/ExplicitBlockArgument: | ||
Enabled: false | ||
|
||
Style/FormatString: | ||
Enabled: false | ||
|
||
Style/FormatStringToken: | ||
Enabled: false | ||
|
||
Style/GuardClause: | ||
Enabled: false | ||
|
||
Style/HashLikeCase: | ||
Enabled: false | ||
|
||
Style/IdenticalConditionalBranches: | ||
Enabled: false | ||
|
||
Style/IfInsideElse: | ||
Enabled: false | ||
|
||
Style/IfWithBooleanLiteralBranches: | ||
Enabled: false | ||
|
||
Style/KeywordParametersOrder: | ||
Enabled: false | ||
|
||
Style/MissingRespondToMissing: | ||
Enabled: false | ||
|
||
Style/MutableConstant: | ||
Enabled: false | ||
|
||
Style/NegatedIfElseCondition: | ||
Enabled: false | ||
|
||
Style/Next: | ||
Enabled: false | ||
|
||
Style/NumericPredicate: | ||
Enabled: false | ||
|
||
Style/ParallelAssignment: | ||
Enabled: false | ||
|
||
Style/PerlBackrefs: | ||
Enabled: false | ||
|
||
Style/RedundantArrayConstructor: | ||
Enabled: false | ||
|
||
Style/SafeNavigation: | ||
Enabled: false | ||
|
||
Style/SpecialGlobalVars: | ||
Enabled: false | ||
|
||
Style/StructInheritance: | ||
Enabled: false | ||
|
||
Style/YodaExpression: | ||
Enabled: false | ||
|
||
Style/StringLiterals: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.2.2 | ||
3.2.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Ignore auto-generated files | ||
db/schema.rb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.