Skip to content

Commit

Permalink
☝️ initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jolzee committed Apr 16, 2020
0 parents commit 6ddf798
Show file tree
Hide file tree
Showing 104 changed files with 40,757 additions and 0 deletions.
1 change: 1 addition & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
defaults
2 changes: 2 additions & 0 deletions .buildpacks
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
https://github.com/heroku/heroku-buildpack-nodejs
https://github.com/dokku/buildpack-nginx
9 changes: 9 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# add git-ignore syntax here of things you don't want copied into docker image

.git
*Dockerfile*
*docker-compose*
node_modules
deploy_rsa
secrets*
.env.*.local
54 changes: 54 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2

[{*.yml}]
indent_style = space
indent_size = 2

[{*.yaml}]
indent_style = space
indent_size = 2

[*.txt]
end_of_line = crlf

[*.md]
trim_trailing_whitespace = false

[*.php]
indent_style = tab
indent_size = 2

[*.scss]
indent_style = tab
indent_size = 2

[*.sass]
indent_style = tab
indent_size = 2

[*.css]
indent_style = tab
indent_size = 2

[*.js]
indent_style = space
indent_size = 2

[*.json]
indent_style = space
indent_size = 2

[*.html]
indent_style = tab
indent_size = 2
28 changes: 28 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
VUE_APP_BUILD_COMPRESS_JAVASCRIPT_ASSETS=true
VUE_APP_BUILD_COMPRESS_CSS_ASSETS=true
VUE_APP_EMBED_KILL_SESSION_ON_CLOSE=false
VUE_APP_FIREBASE_API_KEY=
VUE_APP_FIREBASE_AUTH_DOMAIN=
VUE_APP_FIREBASE_DATABASE_URL=
VUE_APP_FIREBASE_MESSAGING_SENDER_ID=
VUE_APP_FIREBASE_PROJECT_ID=
VUE_APP_FIREBASE_STORAGE_BUCKET=
VUE_APP_GET_STATIC_DEFAULT_CONFIG=true
VUE_APP_HIDE_CONFIG_MENU=true
VUE_APP_LIVE_CHAT_AGENT_ASSIST_SERVER=
VUE_APP_LIVE_CHAT_INC_KEY=
VUE_APP_LOAD_FRESH_CONFIG_FOR_NEW_SESSIONS=true
VUE_APP_LOCATION_IQ_KEY=
VUE_APP_LOG_ROCKET=
VUE_APP_PUSHER_KEY=
VUE_APP_SENTRY_DSN=
VUE_APP_SOLUTION_CONFIG_FILE=.env.solution.json
VUE_APP_SOURCE_MAP=false
VUE_APP_HIDE_AS_BRANDING=false
VUE_APP_KUTT_IT_API_KEY=
VUE_APP_SEND_LOCATION_LOGIN=false
VUE_APP_AUTH_MS_TENANT=
VUE_APP_AUTH_MS_DOMAIN_HINT=
VUE_APP_IP_URL=
VUE_APP_GEO_URL=
VUE_APP_REQUEST_PARAMS=
91 changes: 91 additions & 0 deletions .env.solution.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
{
"activeSolution": "f79b1246-bcac-4f83-tiva-7aefe58eaad2",
"solutions": [
{
"id": "f79b1246-bcac-4f83-tiva-7aefe58eaad2",
"name": "TIVA",
"url": "https://as-tiva-518c5f.bots.teneo.ai/wfh_assistant_proj_3r0v1nhxby897r4yxragw2hx7e/",
"deepLink": "tiva",
"iframeUrl": "https://www.artificial-solutions.com/tiva",
"sendContextParams": "login",
"contextParams": [
{
"name": "channel",
"values": [
{
"text": "webview",
"active": true
}
]
},
{
"name": "sheetId",
"values": [
{
"text": "1r2MzK2H1C-KluUbnkI3nlzu5iYPpzU0R_zDWxhj_l1Y",
"active": true
}
]
}
],
"locale": "en-uk-female",
"chatTitle": "Speak with TIVA",
"responseIcon": "mdi-face-woman",
"userIcon": "mdi-message-text",
"useLocalStorage": false,
"enableLiveChat": true,
"theme": {
"primary": "#2f286e",
"secondary": "#ff4c5b",
"accent": "#1DC0CB",
"error": "#FF5252",
"info": "#2196F3",
"success": "#8BC34A",
"warning": "#FFC107",
"dark": "#0062B1",
"custom1": "#0062B1",
"custom2": "#0062B1",
"custom3": "#0062B1",
"focusButton": "#C8C4C4",
"sendButton": "#2f286e",
"textButton": "#000000"
},
"knowledgeData": [
"Who created you?",
"Can you show me some Coronavirus statistics?",
"I'm having issues with my Webex audio settings",
"Is my job at risk?",
"Can I bring material from the office?",
"I’m feeling a bit lonely since the lockdown started",
"How can stay productive while working from home?"
],
"float": true,
"pulseButton": true,
"longResponsesInModal": false,
"animations": {
"in": "fadeInUp",
"out": "fadeOutDown"
},
"promptTriggers": {
"enabled": false,
"pollSeconds": "5"
},
"font": "leopard-font-normal",
"lookAndFeel": {
"response": {
"iconColor": "secondary",
"blockBgColor": "white",
"blockTextColor": "dark"
},
"question": {
"iconColor": "secondary",
"blockBgColor": "primary",
"blockTextColor": "light"
}
},
"showChatIcons": true,
"responseDelay": 0,
"displayAccent": true
}
]
}
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/dist/**
node_modules
28 changes: 28 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module.exports = {
root: true,
env: {
node: true
},
globals: {
expect: true
},
extends: ["plugin:vue/essential", "prettier", "prettier/vue"],
rules: {
"import/no-unresolved": "off",
"no-cond-assign": "off",
"no-param-reassign": "off",
"no-eval": "off",
"no-nested-ternary": "off",
"no-unused-vars": [
"error",
{
varsIgnorePattern: "logger"
}
],
"prefer-destructuring": "off",
"vue/no-v-html": "off"
},
parserOptions: {
parser: "babel-eslint"
}
};
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.DS_Store
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.log
.history
.history/
secrets.tar
deploy_rsa
deploy_rsa.pub

backup
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
shamefully-hoist=true
# npm config set registry http://localhost:8081/repository/npm-proxy
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12.16.2
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
embed-leopard.js
node_modules
19 changes: 19 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 100,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"vueIndentScriptAndStyle": false
}
13 changes: 13 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"git": {
"tagName": "v${version}",
"requireCleanWorkingDir": false,
"requireUpstream": false
},
"github": {
"release": true
},
"npm": {
"publish": false
}
}
Empty file added .static
Empty file.
3 changes: 3 additions & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
*.vue
node_modules
Loading

0 comments on commit 6ddf798

Please sign in to comment.