-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/develop' into tagsIsBlankFilterFix
- Loading branch information
Showing
108 changed files
with
5,848 additions
and
4,358 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,60 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
max_line_length = 100 | ||
trim_trailing_whitespace = true | ||
|
||
[*.js] | ||
ij_continuation_indent_size = 4 | ||
ij_javascript_blank_lines_after_imports = 1 | ||
ij_javascript_enforce_trailing_comma = remove | ||
ij_javascript_force_quote_style = true | ||
ij_javascript_force_semicolon_style = true | ||
ij_javascript_import_merge_members = global | ||
ij_javascript_import_prefer_absolute_path = global | ||
ij_javascript_import_sort_members = true | ||
ij_javascript_import_sort_module_name = true | ||
ij_javascript_import_use_node_resolution = true | ||
ij_javascript_keep_blank_lines_in_code = 2 | ||
ij_javascript_keep_indents_on_empty_lines = false | ||
ij_javascript_line_comment_add_space = true | ||
ij_javascript_space_after_colon = true | ||
ij_javascript_space_after_comma = true | ||
ij_javascript_space_before_colon = true | ||
ij_javascript_space_before_comma = false | ||
ij_javascript_use_double_quotes = false | ||
ij_javascript_use_semicolon_after_statement = true | ||
|
||
[*.ts] | ||
ij_typescript_blank_lines_after_imports = 1 | ||
ij_typescript_enforce_trailing_comma = remove | ||
ij_typescript_force_quote_style = true | ||
ij_typescript_force_semicolon_style = true | ||
ij_typescript_import_merge_members = global | ||
ij_typescript_import_prefer_absolute_path = global | ||
ij_typescript_import_sort_members = true | ||
ij_typescript_import_sort_module_name = true | ||
ij_typescript_import_use_node_resolution = true | ||
ij_typescript_keep_blank_lines_in_code = 2 | ||
ij_typescript_keep_indents_on_empty_lines = false | ||
ij_typescript_line_comment_add_space = true | ||
ij_typescript_space_after_colon = true | ||
ij_typescript_space_after_comma = true | ||
ij_typescript_space_before_colon = true | ||
ij_typescript_space_before_comma = false | ||
ij_typescript_spaces_within_object_literal_braces = false | ||
ij_typescript_use_double_quotes = false | ||
ij_typescript_use_semicolon_after_statement = true | ||
|
||
[*.json] | ||
indent_size = 2 | ||
|
||
[*.css] | ||
indent_size = 2 | ||
|
||
[*.scss] | ||
indent_size = 2 |
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,34 @@ | ||
# Duplicate this file in your local repo with filename `.env`. It will be ignored by git, but loaded | ||
# by Gradle via a dotenv Gradle plugin and passed to Toolbox to use as instance configs. | ||
|
||
# Note that any values provided in this template will never be read - they are there to provide | ||
# example values only. Any uncommented vars in this file *must* be set in a local .env file. | ||
# See the README for more information. | ||
|
||
# Required variables - must be set in .env, build will throw if missing. | ||
APP_TOOLBOX_ENVIRONMENT=Development | ||
APP_TOOLBOX_DB_HOST=localhost | ||
APP_TOOLBOX_DB_SCHEMA=toolbox | ||
APP_TOOLBOX_DB_USER=toolbox | ||
APP_TOOLBOX_DB_PASSWORD=toolbox | ||
|
||
# Additional DB options | ||
#APP_TOOLBOX_USE_H2=true | ||
#APP_TOOLBOX_DB_CREATE=update | ||
|
||
# Bootstrap admin | ||
# The _USER var can be set on its own to grant an OAuth (Auth0) sourced user admin rights in local | ||
# development. This is supported by Toolbox's use of Hoist Core DefaultRoleService. | ||
#APP_TOOLBOX_BOOTSTRAP_ADMIN_USER= | ||
|
||
# If the _PASSWORD var is also set, Toolbox will create a password-enabled user in its user | ||
# database that can be used when Auth0 is not available. Pair this with the env below to disable | ||
# the OAuth flow entirely and present a form-based login. This is especially useful when testing | ||
# the client on a private IP address via `yarn startWithHoistAndIp` for on-device mobile testing. | ||
#APP_TOOLBOX_BOOTSTRAP_ADMIN_PASSWORD= | ||
#APP_TOOLBOX_USE_OAUTH=false | ||
|
||
# Email support | ||
#APP_TOOLBOX_SMTP_HOST= | ||
#APP_TOOLBOX_SMTP_USER= | ||
#APP_TOOLBOX_SMTP_PASSWORD= |
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.