docs/
├── README.md # This file
└── tricentis_api_docs/ # Tricentis API documentation (gitignored)
├── *.htm # HTML documentation files
└── *_files/ # Resource directories (CSS, JS, images)
The tricentis_api_docs/ directory contains downloaded HTML documentation from Tricentis TOSCA Commander REST API.
Note: This directory is gitignored because:
- Contains third-party documentation
- Large binary assets (images, CSS, JS)
- Can be re-downloaded if needed
- Not part of our source code
prerequisites.htm- REST API prerequisitesrequests.htm- General requests documentationopening_workspaces.htm- Opening workspacesfetching_object_representations.htm- Object representationsprojectid.htm- ProjectId of workspaces*_files/- Supporting resources (CSS, JavaScript, images)
Original documentation from:
https://documentation.tricentis.com/devcorner/2024.2/tcrsapi/
If you need the documentation:
-
Visit the official site:
https://documentation.tricentis.com/devcorner/2024.2/tcrsapi/ -
Or create a placeholder:
mkdir -p docs/tricentis_api_docs echo "Download from https://documentation.tricentis.com/devcorner/2024.2/tcrsapi/" > docs/tricentis_api_docs/README.txt
Main documentation files are in the root directory:
README.md- Main documentation (English)WPROWADZENIE.md- Introduction (Polish)QUICKSTART.md- Quick start guideAPI_REFERENCE.md- Complete API referenceBEST_PRACTICES.md- Best practicesCOMPATIBILITY.md- Compatibility guideARCHITECTURE.md- Architecture overviewHTTP_CLIENTS.md- HTTP clients documentationCHANGELOG.md- Change logPROJECT_SUMMARY.md- Project summaryFILES_OVERVIEW.md- Files overview
- Clean root directory - Keep project root organized
- Easy to ignore - Single gitignore entry
- Clear separation - Our docs vs. third-party docs
- Version control - Don't version third-party content