Skip to content

Commit 8afa0f0

Browse files
committed
Initial commit
1 parent a1d0487 commit 8afa0f0

File tree

163 files changed

+434129
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+434129
-0
lines changed

.gitignore

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# CAP fdt-app
2+
_out
3+
*.db
4+
*.sqlite
5+
connection.properties
6+
default-*.json
7+
.cdsrc-private.json
8+
gen/
9+
node_modules/
10+
target/
11+
12+
# Web IDE, App Studio
13+
.che/
14+
.gen/
15+
16+
# MTA
17+
*_mta_build_tmp
18+
*.mtar
19+
mta_archives/
20+
21+
# Other
22+
.DS_Store
23+
*.orig
24+
*.log
25+
26+
*.iml
27+
*.flattened-pom.xml
28+
29+
# IDEs
30+
# .vscode
31+
# .idea
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
5+
// List of extensions which should be recommended for users of this workspace.
6+
"recommendations": [
7+
"SAPSE.vscode-cds",
8+
"dbaeumer.vscode-eslint",
9+
"esbenp.prettier-vscode",
10+
"mechatroner.rainbow-csv",
11+
"humao.rest-client",
12+
"alexcvzz.vscode-sqlite",
13+
"hbenl.vscode-mocha-test-adapter",
14+
"sdras.night-owl"
15+
],
16+
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
17+
"unwantedRecommendations": [
18+
19+
]
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"command": "cds run --with-mocks --in-memory?",
9+
"name": "cds run",
10+
"request": "launch",
11+
"type": "node-terminal",
12+
"skipFiles": [ "<node_internals>/**" ]
13+
}
14+
]
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "shell",
8+
"label": "cds watch",
9+
"command": "cds",
10+
"args": ["watch"],
11+
"group": {
12+
"kind": "build",
13+
"isDefault": true
14+
},
15+
"problemMatcher": []
16+
},
17+
{
18+
"type": "shell",
19+
"label": "cds run",
20+
"command": "cds",
21+
"args": ["run", "--with-mocks", "--in-memory?"],
22+
"problemMatcher": []
23+
}
24+
]
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
## Intelligent Ticket Service
2+
3+
# Getting Started
4+
5+
Welcome to your new project.
6+
7+
It contains these folders and files, following our recommended project layout:
8+
9+
File or Folder | Purpose
10+
---------|----------
11+
`app/` | content for UI frontends goes here
12+
`db/` | your domain models and data go here
13+
`srv/` | your service models and code go here
14+
`package.json` | project metadata and configuration
15+
`readme.md` | this getting started guide
16+
17+
18+
## Next Steps
19+
20+
- Open a new terminal and run `cds watch`
21+
- (in VS Code simply choose _**Terminal** > Run Task > cds watch_)
22+
- Start adding content, for example, a [db/schema.cds](db/schema.cds).
23+
24+
25+
## Learn More
26+
27+
Learn more at https://cap.cloud.sap/docs/get-started/.
28+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Generated manifest.yml based on template version 0.1.0
2+
# appName = int-ticket
3+
# language=nodejs
4+
# multitenancy=false
5+
---
6+
applications:
7+
# -----------------------------------------------------------------------------------
8+
# Backend Service
9+
# -----------------------------------------------------------------------------------
10+
- name: int-ticket-srv
11+
random-route: false # for development only
12+
path: gen/srv
13+
memory: 128M
14+
disk_quota: 256M
15+
instances: 1
16+
routes:
17+
- route: int-ticket-srv-biagi-dev.cfapps.eu11.hana.ondemand.com
18+
buildpack: nodejs_buildpack
19+

0 commit comments

Comments
 (0)