Skip to content

Commit 9d5e172

Browse files
authored
Merge pull request #1 from polarityio/develop
INT-1435: Initial AWS Athena Integration
2 parents 6f7d0c1 + ed055fb commit 9d5e172

File tree

14 files changed

+3459
-0
lines changed

14 files changed

+3459
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Release Current Version
2+
3+
on:
4+
push:
5+
branches: [ master, main ]
6+
7+
jobs:
8+
Run:
9+
uses: polarityio/polarity-github-actions/.github/workflows/release-server-versions-for-int-store.yml@master
10+
# with:
11+
# use-integration-development-checklist: false
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run Integration Development Checklist
2+
3+
on:
4+
pull_request:
5+
branches: [master, main, develop]
6+
7+
jobs:
8+
run-integration-development-checklist:
9+
runs-on: ubuntu-latest
10+
container: "rockylinux:8"
11+
12+
steps:
13+
- uses: actions/checkout@v6
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: "18"
17+
- name: Test NPM Install
18+
id: test-npm-install
19+
run: |
20+
npm ci
21+
- name: Polarity Integration Development Checklist
22+
id: int-dev-checklist
23+
uses: polarityio/polarity-integration-development-checklist@main
24+
with:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Ignore Maven Compiled Project Files
2+
*/target/
3+
4+
# Ignore IntelliJ Project Information
5+
*.iml
6+
.idea/
7+
8+
# Ignore Sublime Text Project Files
9+
*.sublime-project
10+
*.sublime-workspace
11+
sftp-config.json
12+
13+
# Ignore Eclipse Project Information
14+
*.settings
15+
*.project
16+
*.classpath
17+
dependency-reduced-pom.xml
18+
19+
# Ignore Excel Files
20+
*.xlsx
21+
22+
# Ignore local log files
23+
*.log
24+
25+
# Ignore Generated HTML README Files
26+
README.html
27+
28+
# Ignored installed NPM modules
29+
node_modules/
30+
31+
# Ignore VSCode
32+
*.history
33+
.history
34+
*.vscode
35+
.vscode
36+
37+
legacy_wrapper.js
38+
.DS_Store

.prettierrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"arrowParens": "always",
3+
"bracketSpacing": true,
4+
"printWidth": 120,
5+
"proseWrap": "preserve",
6+
"semi": true,
7+
"singleQuote": true,
8+
"tabWidth": 2,
9+
"trailingComma": "none",
10+
"useTabs": false
11+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 ThreatConnect, Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)