2.0.0 • Published 2 years ago
generator-sap-ui5-app v2.0.0
generator-sap-ui5-app
Generate SAP UI5 projects
Step by step of creating a new project with the generator.
- Install Yeoman globally
npm install -g yo
- Install sap-ui5-app generator globally
npm i -g generator-sap-ui5-app
Create your project using
yo sap-ui5-app
and answer the questions in your terminal:- Insert the project name;
- Insert the project namespace;
- Insert the destination path;
Choose to use docker or not;
In the destination path, if you do not put anything, a folder with the same name as your project will be created. Also, you can navigate to the target parent's folder and insert a
./
to create the project in current folder.
Navigate to the created folder and run the project:
- If your choice was docker, then run:
docker-compose up --build
- Otherwise run:
npm run dev
- If your choice was docker, then run: