Skip to content

Latest commit

 

History

History
37 lines (20 loc) · 1.26 KB

File metadata and controls

37 lines (20 loc) · 1.26 KB

Install Geo Relations Application

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.

app

You can either clone the code from GitHub or download and extract the ZIP file provided to your local file system in .

  1. Clone the project:
git clone https://github.com/SAP-samples/cloud-extension-graph-sample.git
  1. Navigate to the folder of your application in which the package.json is located, which should be /cloud-extension-graph-sample.

  2. 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