Skip to content

Commit 92f0ec0

Browse files
git ignore sdk subfolders.
1 parent 33b304e commit 92f0ec0

File tree

176 files changed

+29
-19957
lines changed

Some content is hidden

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

176 files changed

+29
-19957
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies: # Install dependencies needed to build and test the project @Pipel
1111
# TODO: Implement installation of your project dependencies
1212

1313
build: # Build the project artefact @Pipeline
14-
npm run build
14+
(cd sdk && make build)
1515
(cd docs && make build)
1616

1717
publish: # Publish the project artefact @Pipeline
@@ -22,8 +22,8 @@ deploy: # Deploy the project artefact to the target environment @Pipeline
2222

2323
clean:: # Clean-up project resources (main) @Operations
2424
rm -f .version
25-
rm -rf sdk/*/
26-
# TODO: Implement project resources clean-up step
25+
(cd sdk && make clean)
26+
2727

2828
config:: _install-dependencies version # Configure development environment (main) @Configuration
2929
npm install

docs/.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,3 @@ vendor
77
*Zone.Identifier
88
node_modules
99
_config.version.yml
10-
11-
12-
sdk/*/

sdk/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
python/*
2+
typescript/*

sdk/Makefile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
BASE_URL ?= "/"
2+
VERSION ?= ""
3+
SHELL = /bin/bash
4+
5+
build: version # Build the project artefact @Pipeline
6+
cd .. && npm run build && cd sdk
7+
8+
clean: # Clean-up project resources (main) @Operations
9+
rm -rf */
10+
11+
version:
12+
touch _config.version.yml
13+
if [[ $(VERSION) == "" ]]; then \
14+
(cd .. && make version); \
15+
ver=$$(head -n 1 ../.version 2> /dev/null || echo unknown); \
16+
echo "version: $$ver" > _config.version.yml; \
17+
echo "$$ver" > .version; \
18+
else \
19+
echo "version: $(VERSION)" > _config.version.yml; \
20+
echo "$(VERSION)" > .version; \
21+
fi
22+
23+
echo "{ \"schemaVersion\": 1, \"label\": \"version\", \"message\": \"$$(head -n 1 .version 2> /dev/null || echo unknown)\", \"color\": \"orange\" }" > version.json

sdk/_config.version.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
version: 0.0.1-20250703.072935+33b304e

sdk/python/.github/workflows/python.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

sdk/python/.gitignore

Lines changed: 0 additions & 66 deletions
This file was deleted.

sdk/python/.gitlab-ci.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

sdk/python/.openapi-generator-ignore

Lines changed: 0 additions & 23 deletions
This file was deleted.

sdk/python/.openapi-generator/FILES

Lines changed: 0 additions & 110 deletions
This file was deleted.

0 commit comments

Comments
 (0)