The app allows you to maintain customer relations for a specific region. Currently, "US" is the default, which can be adapted via environment variables.
From a technology perspective, the application is written in JavaScript and running on Node.js. It comes with an embedded SQLite database and new database content is stored in a local file on the cloud.
You can either clone the code from GitHub or download and extract the ZIP file provided to your local file system in .
- Clone the project:
git clone https://github.com/SAP-samples/cloud-extension-graph-sample.git
-
Navigate to the folder of your application in which the
package.json
is located, which should be /cloud-extension-graph-sample. -
Before you continue, make sure that you’ve completed the prerequisites and installed SQLite tools (for Windows users only). Run the following three commands:
npm install
npm install sqlite3 -D
In case of issues or errors, make sure that your Node installation is up to date. Specifically in case of issues installing SQLite3 packages on Windows you could try:
npm install -g npm@latest
npm install sqlite3 -g npm@latest