Skip to content

Commit

Permalink
first commit [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
simonegaffurini committed Nov 16, 2023
0 parents commit 5de5103
Show file tree
Hide file tree
Showing 138 changed files with 6,631 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* [email protected]
32 changes: 32 additions & 0 deletions .github/workflows/updateReadme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Update Readme (docs.trmregistry.com)
on:
workflow_dispatch:
pull_request:
branches:
- 'main'
paths:
- 'README.md'
- 'TABLE_OF_CONTENTS.md'
jobs:
updateReadme:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
path: repo
- name: Checkout Regesta Actions
uses: actions/checkout@v2
with:
repository: RegestaItalia/actions
token: ${{ secrets.CI_GITHUB_TOKEN }}
path: actions/regesta
- name: Update readme
uses: ./actions/regesta/trm/updateReadme
with:
actionPath: actions/regesta/trm/updateReadme
repoFullName: ${{ github.repository }}
branch: ${{ github.ref_name }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
replacePath: core/
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.env
.npmrc
.vscode
node_modules
dist
sapnwrfc.ini
dev_rfc.log
_noderfc.log
src/test.ts
9 changes: 9 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.github
.gitignore
.vscode
.env
src
docs
sapnwrfc.ini
dev_rfc.log
_noderfc.log
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 RegestaItalia

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# <a href="https://docs.trmregistry.com/"><img src="https://docs.trmregistry.com/_media/logo.png" height="40" alt="TRM"></a>

[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-1.3.0-4baaaa.svg)](https://github.com/RegestaItalia/trm-docs/blob/main/CODE_OF_CONDUCT.md)
[![Core License](https://img.shields.io/github/license/RegestaItalia/trm-core)](https://github.com/RegestaItalia/trm-core)
[![Core Latest version](https://img.shields.io/npm/v/trm-core)](https://www.npmjs.com/package/trm-core)
[![Core Installs](https://img.shields.io/npm/dt/trm-core)](https://www.npmjs.com/package/trm-core)

This module contains the core functionalities of TRM (Transport Request Manager).

TRM is a software designed to make transports between SAP ECC/S4 systems easy.

# Documentation <!-- {docsify-remove} -->

Full documentation can be seen at [https://docs.trmregistry.com](https://docs.trmregistry.com).

# Contributing <!-- {docsify-remove} -->

Like every other TRM open-soruce projects, contributions are always welcomed ❤️.

Make sure to open an issue first.

Contributions will be merged upon approval.

[Click here](https://docs.trmregistry.com/#/CONTRIBUTING) for the full list of TRM contribution guidelines.
5 changes: 5 additions & 0 deletions TABLE_OF_CONTENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- [Setup](/client/docs/setup.md)
- [Commands](/client/docs/commands.md)
- [Installing your first package](/client/docs/examples/install.md)
- [Publishing your first package](/client/docs/examples/publish.md)
- [Integrate with abapGit & Github Actions](/client/examples/docs/githubActions.md)
Loading

0 comments on commit 5de5103

Please sign in to comment.