-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Miguel Miche
committed
Dec 5, 2024
0 parents
commit 832cce7
Showing
17 changed files
with
4,602 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# CAP EventsManager | ||
_out | ||
*.db | ||
*.sqlite | ||
connection.properties | ||
default-*.json | ||
.cdsrc-private.json | ||
gen/ | ||
node_modules/ | ||
target/ | ||
|
||
# Web IDE, App Studio | ||
.che/ | ||
.gen/ | ||
|
||
# MTA | ||
*_mta_build_tmp | ||
*.mtar | ||
mta_archives/ | ||
|
||
# Other | ||
.DS_Store | ||
*.orig | ||
*.log | ||
|
||
*.iml | ||
*.flattened-pom.xml | ||
|
||
# IDEs | ||
# .vscode | ||
# .idea | ||
|
||
# @cap-js/cds-typer | ||
@cds-models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
### | ||
# This file configures the project "Piper" pipeline of your project. | ||
# For a reference of the configuration concept and available options, please have a look into its documentation. | ||
# | ||
# The documentation for the most recent pipeline version can always be found at: | ||
# https://www.project-piper.io/ | ||
# | ||
# This is a YAML-file. YAML is an indentation-sensitive file format. Please make sure to properly indent changes to it. | ||
### | ||
|
||
|
||
|
||
### General project setup | ||
general: | ||
inferBuildTool: true | ||
|
||
### Step-specific configuration | ||
steps: | ||
mavenExecute: | ||
dockerImage: devxci/mbtci:1.0.14 | ||
|
||
artifactPrepareVersion: | ||
versioningType: cloud_noTag | ||
|
||
### Stage-specific configuration | ||
stages: | ||
'Confirm': | ||
manualConfirmation: false | ||
|
||
# Integration: | ||
# credentials: | ||
# - alias: 'mySystemAlias' | ||
# credentialId: 'mySystemCredentialsId' | ||
|
||
# Release: | ||
# cfTargets: | ||
# - org: 'myOrg' | ||
# space: 'mySpace' | ||
# apiEndpoint: 'https://' | ||
# appName: 'myAppName' | ||
# manifest: 'manifest.yml' | ||
# credentialsId: 'myDeploymentCredentialsId' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"recommendations": [ | ||
"SAPSE.vscode-cds", | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"mechatroner.rainbow-csv", | ||
"qwtel.sqlite-viewer", | ||
"humao.rest-client" | ||
], | ||
"unwantedRecommendations": [ | ||
|
||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "cds serve", | ||
"request": "launch", | ||
"type": "node", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeExecutable": "cds", | ||
"args": [ | ||
"serve", | ||
"--with-mocks", | ||
"--in-memory?" | ||
], | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "shell", | ||
"label": "cds watch", | ||
"command": "cds", | ||
"args": [ | ||
"watch" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"type": "shell", | ||
"label": "cds serve", | ||
"command": "cds", | ||
"args": [ | ||
"serve", | ||
"--with-mocks", | ||
"--in-memory?" | ||
], | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env groovy | ||
|
||
/* | ||
* This file bootstraps the codified Continuous Delivery pipeline for extensions of SAP solutions such as SAP S/4HANA. | ||
* The pipeline helps you to deliver software changes quickly and in a reliable manner. | ||
* A suitable Jenkins instance is required to run the pipeline. | ||
* More information on getting started with Continuous Delivery can be found here: https://www.project-piper.io/ | ||
*/ | ||
|
||
@Library('piper-lib-os') _ | ||
|
||
piperPipeline script: this |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Getting Started | ||
|
||
Welcome to your new project. | ||
|
||
It contains these folders and files, following our recommended project layout: | ||
|
||
File or Folder | Purpose | ||
---------|---------- | ||
`app/` | content for UI frontends goes here | ||
`db/` | your domain models and data go here | ||
`srv/` | your service models and code go here | ||
`package.json` | project metadata and configuration | ||
`readme.md` | this getting started guide | ||
|
||
|
||
## Next Steps | ||
|
||
- Open a new terminal and run `cds watch` | ||
- (in VS Code simply choose _**Terminal** > Run Task > cds watch_) | ||
- Start adding content, for example, a [db/schema.cds](db/schema.cds). | ||
|
||
|
||
## Learn More | ||
|
||
Learn more at https://cap.cloud.sap/docs/get-started/. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "approuter", | ||
"dependencies": { | ||
"@sap/approuter": "^17.0.0" | ||
}, | ||
"engines": { | ||
"node": "^22.0.0" | ||
}, | ||
"scripts": { | ||
"start": "node node_modules/@sap/approuter/approuter.js" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"routes": [ | ||
{ | ||
"source": "^/app/(.*)$", | ||
"target": "$1", | ||
"localDir": ".", | ||
"cacheControl": "no-cache, no-store, must-revalidate" | ||
}, | ||
{ | ||
"source": "^/appconfig/", | ||
"localDir": ".", | ||
"cacheControl": "no-cache, no-store, must-revalidate" | ||
}, | ||
{ | ||
"source": "^/(.*)$", | ||
"target": "$1", | ||
"destination": "srv-api", | ||
"csrfProtection": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
{ | ||
"file_suffixes": { | ||
"csv": { | ||
"plugin_name": "com.sap.hana.di.tabledata.source" | ||
}, | ||
"hdbafllangprocedure": { | ||
"plugin_name": "com.sap.hana.di.afllangprocedure" | ||
}, | ||
"hdbanalyticprivilege": { | ||
"plugin_name": "com.sap.hana.di.analyticprivilege" | ||
}, | ||
"hdbcalculationview": { | ||
"plugin_name": "com.sap.hana.di.calculationview" | ||
}, | ||
"hdbcollection": { | ||
"plugin_name": "com.sap.hana.di.collection" | ||
}, | ||
"hdbconstraint": { | ||
"plugin_name": "com.sap.hana.di.constraint" | ||
}, | ||
"hdbdropcreatetable": { | ||
"plugin_name": "com.sap.hana.di.dropcreatetable" | ||
}, | ||
"hdbflowgraph": { | ||
"plugin_name": "com.sap.hana.di.flowgraph" | ||
}, | ||
"hdbfunction": { | ||
"plugin_name": "com.sap.hana.di.function" | ||
}, | ||
"hdbgraphworkspace": { | ||
"plugin_name": "com.sap.hana.di.graphworkspace" | ||
}, | ||
"hdbhadoopmrjob": { | ||
"plugin_name": "com.sap.hana.di.virtualfunctionpackage.hadoop" | ||
}, | ||
"hdbindex": { | ||
"plugin_name": "com.sap.hana.di.index" | ||
}, | ||
"hdblibrary": { | ||
"plugin_name": "com.sap.hana.di.library" | ||
}, | ||
"hdbmigrationtable": { | ||
"plugin_name": "com.sap.hana.di.table.migration" | ||
}, | ||
"hdbprocedure": { | ||
"plugin_name": "com.sap.hana.di.procedure" | ||
}, | ||
"hdbprojectionview": { | ||
"plugin_name": "com.sap.hana.di.projectionview" | ||
}, | ||
"hdbprojectionviewconfig": { | ||
"plugin_name": "com.sap.hana.di.projectionview.config" | ||
}, | ||
"hdbreptask": { | ||
"plugin_name": "com.sap.hana.di.reptask" | ||
}, | ||
"hdbresultcache": { | ||
"plugin_name": "com.sap.hana.di.resultcache" | ||
}, | ||
"hdbrole": { | ||
"plugin_name": "com.sap.hana.di.role" | ||
}, | ||
"hdbroleconfig": { | ||
"plugin_name": "com.sap.hana.di.role.config" | ||
}, | ||
"hdbsearchruleset": { | ||
"plugin_name": "com.sap.hana.di.searchruleset" | ||
}, | ||
"hdbsequence": { | ||
"plugin_name": "com.sap.hana.di.sequence" | ||
}, | ||
"hdbstatistics": { | ||
"plugin_name": "com.sap.hana.di.statistics" | ||
}, | ||
"hdbstructuredprivilege": { | ||
"plugin_name": "com.sap.hana.di.structuredprivilege" | ||
}, | ||
"hdbsynonym": { | ||
"plugin_name": "com.sap.hana.di.synonym" | ||
}, | ||
"hdbsynonymconfig": { | ||
"plugin_name": "com.sap.hana.di.synonym.config" | ||
}, | ||
"hdbsystemversioning": { | ||
"plugin_name": "com.sap.hana.di.systemversioning" | ||
}, | ||
"hdbtable": { | ||
"plugin_name": "com.sap.hana.di.table" | ||
}, | ||
"hdbtabledata": { | ||
"plugin_name": "com.sap.hana.di.tabledata" | ||
}, | ||
"hdbtabletype": { | ||
"plugin_name": "com.sap.hana.di.tabletype" | ||
}, | ||
"hdbtrigger": { | ||
"plugin_name": "com.sap.hana.di.trigger" | ||
}, | ||
"hdbview": { | ||
"plugin_name": "com.sap.hana.di.view" | ||
}, | ||
"hdbvirtualfunction": { | ||
"plugin_name": "com.sap.hana.di.virtualfunction" | ||
}, | ||
"hdbvirtualfunctionconfig": { | ||
"plugin_name": "com.sap.hana.di.virtualfunction.config" | ||
}, | ||
"hdbvirtualpackagehadoop": { | ||
"plugin_name": "com.sap.hana.di.virtualpackage.hadoop" | ||
}, | ||
"hdbvirtualpackagesparksql": { | ||
"plugin_name": "com.sap.hana.di.virtualpackage.sparksql" | ||
}, | ||
"hdbvirtualprocedure": { | ||
"plugin_name": "com.sap.hana.di.virtualprocedure" | ||
}, | ||
"hdbvirtualprocedureconfig": { | ||
"plugin_name": "com.sap.hana.di.virtualprocedure.config" | ||
}, | ||
"hdbvirtualtable": { | ||
"plugin_name": "com.sap.hana.di.virtualtable" | ||
}, | ||
"hdbvirtualtableconfig": { | ||
"plugin_name": "com.sap.hana.di.virtualtable.config" | ||
}, | ||
"properties": { | ||
"plugin_name": "com.sap.hana.di.tabledata.properties" | ||
}, | ||
"tags": { | ||
"plugin_name": "com.sap.hana.di.tabledata.properties" | ||
}, | ||
"txt": { | ||
"plugin_name": "com.sap.hana.di.copyonly" | ||
}, | ||
"hdbeshconfig": { | ||
"plugin_name": "com.sap.hana.di.eshconfig" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
"src/gen/**/*.hdbview", | ||
"src/gen/**/*.hdbindex", | ||
"src/gen/**/*.hdbconstraint", | ||
"src/gen/**/*_drafts.hdbtable", | ||
"src/gen/**/*.hdbcalculationview" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import cds from '@sap/cds/eslint.config.mjs' | ||
export default [ ...cds.recommended ] |
Oops, something went wrong.