Skip to content

Commit

Permalink
feat:add o icone novo do chat e mudando o footer
Browse files Browse the repository at this point in the history
  • Loading branch information
GZaranza committed Aug 9, 2024
1 parent 48f7ff4 commit 4381b06
Show file tree
Hide file tree
Showing 27 changed files with 1,130 additions and 1,096 deletions.
9 changes: 9 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.git
**/node_modules
node_modules
out
dist
Dockerfile
**/Dockerfile
.dockerignore
**/.dockerignore
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
124 changes: 124 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
module.exports = {
env: {
browser: true,
es6: true,
node: true
},
extends: ['prettier'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: [
'./packages/*/tsconfig.json',
'./packages/bp/e2e/tsconfig.json',
'./modules/tsconfig*.eslint.json',
'./internal-modules/tsconfig*.eslint.json',
'./build/module-builder/tsconfig.json',
'./build/downloader/tsconfig.json'
],
tsconfigRootDir: __dirname,
sourceType: 'module'
},
ignorePatterns: [
'**/index.d.ts',
'**/global.d.ts',
'**/knex.d.ts',
'**/*.scss.d.ts',
'**/*.test.ts',
'*.js',
'**/node_modules/**',
'**/dist/**'
],
plugins: ['eslint-plugin-import', 'eslint-plugin-jsdoc', '@typescript-eslint'],
rules: {
'@typescript-eslint/array-type': 'error',
'@typescript-eslint/no-non-null-asserted-optional-chain': 'error',
'@typescript-eslint/await-thenable': 'error',
'@typescript-eslint/consistent-type-definitions': 'error',
'@typescript-eslint/member-delimiter-style': [
'error',
{
multiline: {
delimiter: 'none',
requireLast: true
},
singleline: {
delimiter: 'semi',
requireLast: false
}
}
],
'@typescript-eslint/no-floating-promises': 'error',
'@typescript-eslint/prefer-namespace-keyword': 'error',
'@typescript-eslint/quotes': [
'error',
'single',
{
avoidEscape: true
}
],
'@typescript-eslint/semi': ['error', 'never'],
'@typescript-eslint/type-annotation-spacing': 'error',
'brace-style': ['error', '1tbs'],
curly: 'error',
'eol-last': 'error',
eqeqeq: ['error', 'smart'],
'import/order': [
'warn',
{
groups: [['builtin', 'external'], 'parent', 'index', 'sibling'],
// TODO: Eventually enable this in the future for consistency
// 'newlines-between': 'always',
alphabetize: {
order: 'asc',
caseInsensitive: true
},
pathGroups: [
{
pattern: '~/**',
group: 'external',
position: 'after'
}
],
pathGroupsExcludedImportTypes: ['builtin']
}
],
'jsdoc/check-alignment': 'error',
'linebreak-style': ['error', 'unix'],
'no-console': [
'warn',
{
allow: [
'warn',
'dir',
'time',
'timeEnd',
'timeLog',
'trace',
'assert',
'clear',
'count',
'countReset',
'group',
'groupEnd',
'table',
'debug',
'info',
'dirxml',
'error',
'groupCollapsed',
'Console',
'profile',
'profileEnd',
'timeStamp',
'context'
]
}
],
'no-duplicate-imports': 'error',
'no-return-await': 'error',
'no-trailing-spaces': 'error',
'no-var': 'error',
'object-shorthand': 'error',
'prefer-const': 'warn'
}
}
14 changes: 14 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
* text=auto eol=lf

*.png -text
*.jpg -text
*.gif -text
*.mp3 -text
*.tgz -text
*.sfx -text
*.woff2 -text
*.node -text

modules/nlu/src/backend/tools/pretrained/* -text
modules/nlu/src/backend/language/pre-trained/* -text
modules/.knowledge/src/backend/tools/bin/* -text
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ cache
modules/*/assets/web/*
modules/*/assets/config.schema.json
**/out/**
**/dist/**
**/dist/**
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "pro"]
path = packages/bp/src/pro
url = [email protected]:botpress/botpress-pro.git
23 changes: 23 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
image: node:12-alpine
tasks:
- init: yarn && yarn build
command: yarn run start
openMode: split-right
name: Builds & run Botpress

vscode:
extensions:
- [email protected]:GDba64T6G+TUi1qmc6BE3A==
- [email protected]:fDVCkGVYd1R2lfcs1tHk+Q==
- [email protected]:zy4YO0p/vGcDbgPap4k4+A==
- [email protected]:TEjqQVt71hdvHUZA7eWgHA==

github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: false
addComment: true
addBadge: true
addLabel: prebuilt-ready
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12.18.1
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none",
"semi": false,
"bracketSpacing": true,
"requirePragma": false
}
2 changes: 2 additions & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
python 2.7.18
nodejs 12.18.3
Loading

0 comments on commit 4381b06

Please sign in to comment.