generated from oracle-devrel/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from oracle-devrel/work
Branch Merge
- Loading branch information
Showing
108 changed files
with
3,024 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,8 @@ Temporary Items | |
.key | ||
.crt | ||
.csr | ||
.pem | ||
.pem | ||
|
||
#temp directory ignore | ||
deploy/ | ||
service/python/Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/jet_components | ||
/exchange_components | ||
/node_modules | ||
/bower_components | ||
/dist | ||
/web | ||
/staged-themes | ||
/themes | ||
/jaftmp@ | ||
|
||
/hybrid/node_modules | ||
/hybrid/platforms | ||
/hybrid/www/* | ||
|
||
!hybrid/plugins | ||
hybrid/plugins/* | ||
!hybrid/plugins/fetch.json | ||
|
||
package-lock.json | ||
|
||
.DS_Store | ||
Thumbs.db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM nginx:1.23-alpine-slim | ||
|
||
RUN apk add --update nodejs npm | ||
|
||
|
||
WORKDIR /usr/share/build | ||
|
||
RUN mkdir -p /usr/share/build/src \ | ||
&& mkdir -p /usr/share/build/scripts | ||
|
||
COPY src/ /usr/share/build/src/ | ||
|
||
COPY scripts/ /usr/share/build/scripts/ | ||
|
||
COPY *.json /usr/share/build/ | ||
|
||
RUN npm install | ||
RUN npm install -g @oracle/ojet-cli | ||
RUN npx ojet build web --release | ||
|
||
EXPOSE 80 | ||
|
||
RUN cp -R /usr/share/build/web/* /usr/share/nginx/html/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"title": [ | ||
"+---------------------------------------------------------------------+", | ||
"| OJET Application Audit |", | ||
"+---------------------------------------------------------------------+", | ||
"JAF $jafver - Jet $jetver : ($jafdate, $jaftime)\n" | ||
], | ||
"base": "$jafcwd", | ||
"files": [ | ||
"./src/**/*.html", | ||
"./src/**/*.js", | ||
"./src/**/*.ts", | ||
"./src/**/component.json", | ||
"./src/styles/**/*.css" | ||
], | ||
"exclude": [ | ||
"./src/**/*-min.js", | ||
"./src/**/*-min.css", | ||
"./src/styles/*", | ||
"./**/node_modules/**/*.*" | ||
], | ||
"components": ["./jet_components/**/component.json"], | ||
"builtinJetRules": true, | ||
"jetVer": "15.1", | ||
"ecmaVer": 14, | ||
"format": "prose", | ||
"severity": "all", | ||
"groups": ["all"], | ||
"theme": "Redwood", | ||
"typescript": { | ||
"tsconfig": "." | ||
}, | ||
"options": { | ||
"verbose": false, | ||
"color": true | ||
}, | ||
"ojet": { | ||
"update": true, | ||
"md5": "157a41b6c41e0ea3a2cf1220cb184de3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"paths": { | ||
"source": { | ||
"common": "src", | ||
"web": "src-web", | ||
"javascript": ".", | ||
"typescript": ".", | ||
"styles": "styles", | ||
"themes": "themes", | ||
"components": "components", | ||
"exchangeComponents": "exchange_components" | ||
}, | ||
"staging": { | ||
"web": "web", | ||
"themes": "staged-themes" | ||
} | ||
}, | ||
"defaultBrowser": "chrome", | ||
"sassVer": "8.0.0", | ||
"defaultTheme": "redwood", | ||
"typescriptLibraries": "[email protected] yargs-parser@~13.1.2", | ||
"webpackLibraries": "[email protected] @types/[email protected] webpack-dev-server style-loader css-loader sass-loader sass [email protected] raw-loader noop-loader html-webpack-plugin html-replace-webpack-plugin copy-webpack-plugin @prefresh/webpack @prefresh/babel-plugin webpack-merge compression-webpack-plugin mini-css-extract-plugin clean-webpack-plugin css-fix-url-loader", | ||
"mochaTestingLibraries": "karma mocha sinon chai coverage [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] @types/[email protected] @types/[email protected] @types/[email protected] @types/[email protected]", | ||
"jestTestingLibraries": "[email protected] @testing-library/[email protected] @types/[email protected] [email protected] @oracle/oraclejet-jest-preset@~15.1.0", | ||
"architecture": "vdom", | ||
"watchInterval": 1000, | ||
"exchange-url": "https://exchange.oraclecorp.com/api/0.2.0/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "JETGenAI", | ||
"version": "1.0.0", | ||
"description": "An Oracle JavaScript Extension Toolkit(JET) web app", | ||
"dependencies": { | ||
"@oracle/oraclejet": "~15.1.0", | ||
"@oracle/oraclejet-core-pack": "~15.1.0", | ||
"marked": "^4.3.0", | ||
"uuid": "^9.0.1" | ||
}, | ||
"devDependencies": { | ||
"@oracle/ojet-cli": "~15.1.0", | ||
"@oracle/oraclejet-audit": "^15.1.3", | ||
"@types/uuid": "^9.0.7", | ||
"extract-zip": "^1.7.0", | ||
"fs-extra": "^8.1.0", | ||
"glob": "7.2.0", | ||
"typescript": "5.0.4", | ||
"underscore": "^1.10.2", | ||
"yargs-parser": "13.1.2" | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0" | ||
}, | ||
"private": true | ||
} |
Oops, something went wrong.