You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -49,14 +49,15 @@ Next, you will be able to open the project in your favorite IDE or Code Editor a
49
49
50
50
## Templates
51
51
52
-
The package offers the following templates, which connect to the database using the [oracledb database driver](https://github.com/oracle/node-oracledb):
52
+
The package offers the following templates, some of them connect to the database using the [oracledb database driver](https://github.com/oracle/node-oracledb) and other use [Oracle REST Data Services](https://www.oracle.com/database/technologies/appdev/rest.html) endpoints:
53
53
54
54
-`node-vanilla`: A starter template that uses Node.js, vanilla JavaScript, HTML and CSS. It is built by [vite](https://vitejs.dev/).
55
55
-`node-jet`: A starter template that uses Node.js and [Oracle JET](https://www.oracle.com/webfolder/technetwork/jet/index.html). It is built using the [ojet-cli](https://www.npmjs.com/package/@oracle/ojet-cli).
56
56
-`node-react`: A starter template that uses Node.js and [React](https://react.dev/). It is built by [vite](https://vitejs.dev/).
57
57
-`node-vue`: A starter template that uses Node.js and [Vue.js](https://vuejs.org/). It is built by [vite](https://vitejs.dev/).
58
58
-`node-angular`: A starter template that uses Node.js and [Angular](https://angular.dev/). It is built by [Angular CLI](https://github.com/angular/angular-cli). (New in `v1.2.0`)
59
59
-`node-react-todo`: A simple task manager template that uses Node.js and [React](https://react.dev/). It demonstrates the use of the database for Create, Read, Update and Delete (CRUD) operations. It is built by [vite](https://vitejs.dev/).
60
+
-`ords-remix-jwt-sample`: A full stack Concert Application made with [Remix](https://remix.run/) that showcases the [Oracle REST Data Services](https://www.oracle.com/database/technologies/appdev/rest.html) functionalities. Some extra configuration is required, learn more about it in the `ords-remix-jwt-sample`[Getting Started Guide](/templates/ords-remix-jwt-sample/README.md#getting-started).
60
61
61
62
Each of the templates include documentation for you to get started with them, as well as NPM scripts for you to use right after generating the application.
62
63
@@ -89,6 +90,7 @@ DB_USER=<my-username>
89
90
DB_PASSWORD=<my-password>
90
91
...
91
92
```
93
+
Note: For the `ords-remix-jwt-sample` is expected that you will configurate your own `.env` file folowing the `ords-remix-jwt-sample`[Getting Started Guide](/templates/ords-remix-jwt-sample/README.md#getting-started).
description: 'This creates a simple Todo app made with ExpressJS as the backend, React as the frontend, and an Oracle Database connection that will be created from the details you provide later...',
370
370
},
371
+
{
372
+
name: 'ords-remix-jwt-sample',
373
+
value: 'ords-remix-jwt-sample',
374
+
description: 'This creates a fullstack Concert Application made with Remix that leverages the Oracle REST Data Services functionalities. You will need to configurate the application yourself following the getting started guide.',
375
+
},
371
376
],
372
377
default: 'node-vanilla'
373
378
},
374
379
) : template;
380
+
381
+
// This represents the config object that will hold all the information that the user has inputted and selected.
0 commit comments