Skip to main content

Posts

Showing posts with the label #accs and nodejs

Deploy NodeJS application in Oracle Application Container Cloud

Check my previous blog regarding " How to create a NodeJS application for CRUD services on Oracle Database Cloud ", I am going to use that application now to explain the deployment process on App Container Cloud. As mentioned in the previous blog, you need "manifest.json". It should contain some basic config params. My case it contained : For more info on these params : https://docs.oracle.com/cloud/latest/apaas_gs/DVCJV/GUID-D98FB882-5E58-4318-9DCB-4B404FD86E14.htm You need to create a .zip file containing all the files and folders inside your NodeJS application : IMPORTANT : Once you have the zip file, open it and go inside "node_modules" and delete "oracledb" folder from it. Oracle Application Container Cloud provides this node_module out-of-the-box, so you don't need to include this in the packaging. Now open service console of Application Container Cloud and click on "Create Application" Then select "No...