Skip to content

Commit 5069efb

Browse files
Bill LeoutsakosBill Leoutsakos
authored andcommitted
feat(oracledb): add Oracle Database integration
1 parent 150bff4 commit 5069efb

56 files changed

Lines changed: 7144 additions & 8 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
FROM node:24-alpine AS node-runtime
2+
13
FROM oven/bun:1.3.14-alpine
24

5+
COPY --from=node-runtime /usr/local/bin/node /usr/local/bin/node
6+
37
# Install necessary packages for development
48
RUN apk add --no-cache \
59
git \
@@ -15,6 +19,7 @@ RUN apk add --no-cache \
1519
zsh \
1620
zsh-vcs \
1721
ca-certificates \
22+
libstdc++ \
1823
shadow
1924

2025
# Create a non-root user with matching UID/GID
@@ -44,4 +49,4 @@ WORKDIR /workspace
4449
# Expose the ports we're interested in
4550
EXPOSE 3000
4651
EXPOSE 3001
47-
EXPOSE 3002
52+
EXPOSE 3002

apps/docs/components/icons.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9287,6 +9287,10 @@ export function NetSuiteIcon(props: SVGProps<SVGSVGElement>) {
92879287
)
92889288
}
92899289

9290+
export function OracleDatabaseIcon(props: SVGProps<SVGSVGElement>) {
9291+
return <NetSuiteIcon {...props} />
9292+
}
9293+
92909294
export function WizaIcon(props: SVGProps<SVGSVGElement>) {
92919295
return (
92929296
<svg {...props} viewBox='0 0 51 49' fill='none' xmlns='http://www.w3.org/2000/svg'>

apps/docs/components/ui/icon-mapping.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ import {
175175
OktaIcon,
176176
OnePasswordIcon,
177177
OpenAIIcon,
178+
OracleDatabaseIcon,
178179
OutlookIcon,
179180
PackageSearchIcon,
180181
PagerDutyIcon,
@@ -480,6 +481,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
480481
onedrive: MicrosoftOneDriveIcon,
481482
onepassword: OnePasswordIcon,
482483
openai: OpenAIIcon,
484+
oracledb: OracleDatabaseIcon,
483485
outlook: OutlookIcon,
484486
pagerduty: PagerDutyIcon,
485487
parallel_ai: ParallelIcon,

apps/docs/content/docs/integrations/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@
187187
"onedrive",
188188
"onepassword",
189189
"openai",
190+
"oracledb",
190191
"outlook",
191192
"pagerduty",
192193
"parallel_ai",

apps/docs/content/docs/integrations/oracledb.mdx

Lines changed: 263 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)