Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes for superset bulk user create in Uganda #1

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .env.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
SUPERSET_USERNAME = "admin"
SUPERSET_PASSWORD = "admin"
SUPERSET_BASE_URL = "http://localhost:8088"
SUPERSET_API_PATH = "/api/v1"
CHA_TABLES = [1,2,3]
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have to load the datasets dynamically and also be able to update the rowlevel security with the newly added datasets

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can safely be ignored.

DATA_FILE_PATH = ""
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# do not lint node_modules
node_modules
# do not lint build
build
# do not lint coverage
coverage
20 changes: 20 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier", "jest"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"no-console": 1,
"prettier/prettier": 2
},
"env": {
"browser": true,
"node": true,
"jest/globals": true
}
}

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ logs
.vscode
/cht_usr/dist/
.idea
.DS_Store
.DS_Store
build/
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80
}

42 changes: 0 additions & 42 deletions build/config/config.js

This file was deleted.

88 changes: 0 additions & 88 deletions build/index.js

This file was deleted.

23 changes: 0 additions & 23 deletions build/useCase/example.js

This file was deleted.

116 changes: 0 additions & 116 deletions build/utils/auth.js

This file was deleted.

11 changes: 0 additions & 11 deletions build/utils/role.js

This file was deleted.

12 changes: 0 additions & 12 deletions build/utils/rowlevelsecurity.js

This file was deleted.

Loading