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
+1
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,7 @@ The package offers the following templates, some of them connect to the database
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
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).
61
+
-`mle-ts-sample`: A starter template application that demonstrates how backend applications can be developed using [Oracle Database Multilingual Engine (MLE)](https://docs.oracle.com/en/database/oracle/oracle-database/23/mlejs/introduction-to-mle.html). Requires SQLcl to be installed, for more information please read [README](/templates/mle-ts-sample/README.md)
61
62
62
63
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.
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
376
},
377
+
{
378
+
name: 'mle-ts-sample',
379
+
value: 'mle-ts-sample',
380
+
description: 'This creates an empty project with MLE and Oracle database connection starter code.'
message: 'Please provide full path to your SQLcl installation (SQLcl can be downloaded and installed from https://www.oracle.com/database/sqldeveloper/technologies/sqlcl): ',
549
+
validate(input){
550
+
returninput.trim().length===0 ? 'This field cannot be empty!' : true;
551
+
}
552
+
},
553
+
) : sqlclPath
554
+
});
555
+
}
556
+
536
557
generateDatabaseApp(configObject);
537
558
// TODO: This is the object that holds the application name, template choice, connection details depending on the chosen connection type.
0 commit comments