Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
FIT-Connect-SDK - Java
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FIT-Connect
FIT-Connect-SDK - Java
Commits
891aaed9
Commit
891aaed9
authored
2 years ago
by
Martin Vogel
Browse files
Options
Downloads
Patches
Plain Diff
refactor(docu): update readmes
parent
df7c4d11
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+5
-1
5 additions, 1 deletion
README.md
client/README.md
+1
-1
1 addition, 1 deletion
client/README.md
with
6 additions
and
2 deletions
README.md
+
5
−
1
View file @
891aaed9
...
...
@@ -63,7 +63,11 @@ _The following steps show how to get the SDK running_
./mvnw clean
install
-DskipTests
```
5.
Enter your API keys and references to your private decryption key in
`config.yml`
6.
Provide config via environment variable
``FIT_CONNECT_CONFIG``
or load the config with
````
java
var
config
=
ApplicationConfigLoader
.
loadConfig
(
"absolute/path/to/config.yml"
);
var
senderClient
=
ClientFactory
.
senderClient
(
config
);
````
<p
align=
"right"
>
(
<a
href=
"#top"
>
back to top
</a>
)
</p>
...
...
This diff is collapsed.
Click to expand it.
client/README.md
+
1
−
1
View file @
891aaed9
...
...
@@ -12,7 +12,7 @@ The sdk comes with a commandline client to be able to use the sdk without any co
2.
Windows:
``set FIT_CONNECT_CONFIG=C:\Path\To\config.yml``
2.
Initialize client via ApplicationConfigLoader:
````
java
var
config
=
ApplicationConfigLoader
.
loadConfig
(
Path
.
of
(
"absolute/path/to/config.yml"
)
)
;
var
config
=
ApplicationConfigLoader
.
loadConfig
(
"absolute/path/to/config.yml"
);
var
senderClient
=
ClientFactory
.
senderClient
(
config
);
````
5.
run client with
``java -jar client-VERSION.jar [COMMAND] [OPTIONS]``
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment