Skip to content

Latest commit

 

History

History

00-prep-dev-environment

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Chapter 00 - Preparing the development environment

By the end of this chapter we will have prepared our development environment so that we can start developing our application.

Steps

1. Prerequisites
2. Navigate into your preferred directory
3. Clone this repository
4. Navigate into the newly created directory
5. Open the directory

1. Prerequisites

To be able to follow the instructions in this repository you need to fulfill one of the following requirements:

  • Option 1: You have access to the SAP Business Application Studio with the role collection Business_Application_Studio_Developer assigned to you in the SAP Business Technology Platform Cockpit. Create a new dev space of type Full Stack Cloud Application to get started.

If you don't have access to the SAP Business Application Studio yet, check this tutorial on how to get a free account on SAP BTP trial, from where you can subscribe to the SAP Business Application Studio.

2. Navigate into your preferred directory

➡️ In your development environment (see step 1), open a new terminal session and navigate to where you want to store this repository.

In case you are not familiar with navigation via the terminal, check out this article.

3. Clone this repository

➡️ Execute the following command to clone this repository:

git clone https://github.com/SAP-samples/fiori-elements-fpm-exercises-codejam

We succesfully cloned this repository, for which a new directory has been created.

4. Navigate into the newly created directory

We want to navigate into the bookshop/ directory inside newly created directory, as this is where we will build our application.

➡️ Execute the following command in the same terminal session:

cd fiori-elements-fpm-exercises-codejam/bookshop

5. Open the directory

➡️ Open the directory in the code editor of your choice, depending on the option you chose in step 1.

Continue to Chapter 01 - Running the SAP CAP application