GitLab
gitlab.com › mdhtr › gitlab-pages-swagger-ui
mdhtr / gitlab-pages-swagger-ui · GitLab
Example Swagger UI gitlab page. View resulting page at: https://mdhtr.gitlab.io/gitlab-pages-swagger-ui/
Forked by 7 users
Languages: JavaScript 59.8% | HTML 34.9% | CSS 5.3%
Gitlab OpenAPI spec sheet/swagger
It's incomplete, so may not be suitable for your purpose https://gitlab.com/groups/gitlab-org/-/epics/8926 More on reddit.com
OpenAPI Viewer
Feature Description GitLab has a feature where they can render openapi/swagger documents using swagger-ui in a rendered view. We should consider adding this too as we already bundle swagger-ui, so ... More on github.com
Is there a GitLab API Specification, such as Swagger or RAML?
I’m the author of the GitLab::API::v3 Perl module and came up with my own very limited specification of the GitLab API here: I’d like to change this to use an official API specification, optimally Swagger. I was about to start working on this but wanted to first check if someone has already ... More on forum.gitlab.com
json - Display rendered file in gitlab (yaml) - Stack Overflow
I am trying to display my Swagger API documentation in gitlab. However, I don't want to display the source code, but the rendered file. I have seen in another group that it is possible: In this ima... More on stackoverflow.com
Reddit
reddit.com › r/gitlab › gitlab openapi spec sheet/swagger
r/gitlab on Reddit: Gitlab OpenAPI spec sheet/swagger
December 23, 2024 -
I know this may be a dumb question, but is there any chance gitlab has its OpenAPI/swagger json built into gitlab itself? I.E. on an offline instance I can go to something like https://gitlab.example.com/api/v4/swagger.json? I l am trying it pull the API definitions for our suite of applications for security purposes.
I had found the online version and yeah sure I could pull the spec from gitlab.com, but getting that file moved to the offline environment where it is needed is... troublesome. I'm also not going to hand transcribe it because I'm an engineer not a data entry clerk.
Top answer 1 of 3
2
It's incomplete, so may not be suitable for your purpose https://gitlab.com/groups/gitlab-org/-/epics/8926
2 of 3
1
Honest question, why would you want a swagger file while oas has been around since 2016, oas 3 since 2017 I do find the gitlab api to be rather a maze, I agree a decent openapi spec would be useful. I haven't checked for it's existence but I have to say I'm not surprised it's not there. Gitlab api is sort of a... idk, not an api first api
ETSI
forge.etsi.org › wiki › index.php › Swagger_Editor_and_Gitlab
Swagger Editor and Gitlab - ETSI Forge
To help ETSI Groups working over OpenAPIs in a smooth and efficient way, this tool integrates the well known Swagger Editor with the repository management system at ETSI Forge, namely Gitlab.
Forked by 2 users
Languages: JavaScript 73.6% | HTML 14.4% | CSS 11.8% | Shell 0.2% | JavaScript 73.6% | HTML 14.4% | CSS 11.8% | Shell 0.2%
GitLab
forum.gitlab.com › how to use gitlab
Is there a GitLab API Specification, such as Swagger or RAML? - How to Use GitLab - GitLab Forum
June 11, 2015 - I’m the author of the GitLab::API::v3 Perl module and came up with my own very limited specification of the GitLab API here: I’d like to change this to use an official API specification, optimally Swagger. I was abou…
GitLab
gitlab.com › gitlab.org › #14148
Support for swagger UI (#14148) · Issues · GitLab.org / GitLab · GitLab
Can we use gitlab wiki with swagger UI rather than the gollum. Or is there any way to use with jkeyll so that I can configure jkeyll with...
GitLab
gitlab.com › gitlab.org › #19515
Integrate with OpenAPI editor (#19515) · Issues · GitLab.org / GitLab · GitLab
Description OpenAPI aka. Swagger is a widely used API description format. The idea is to: render an...
GitLab
gitlab.com › gitlab.org › #427440
Use Swagger UI for OpenAPI Specifciations File when browsing artifacts (#427440) · Issues · GitLab.org / GitLab · GitLab
Proposal GitLab will use Swagger UI for OpenAPI Specifications files in the repository. We don't commit our OpenAPI Specifications files, but...
Stack Overflow
stackoverflow.com › questions › 68088001 › gitlab-ci-integration-generate-swagger-editor-style-page
Gitlab CI Integration - Generate Swagger Editor style Page - Stack Overflow
I am currently build my GitLab Pages site like this: pages: stage: deploy script: - mkdir ~/.npm-global - npm config set prefix '~/.npm-global' - echo "export PATH=~/.npm-global/bin:$PATH" > ~/.profile - source ~/.profile - npm install -g redoc-cli --verbose - redoc-cli bundle -o public/index.html swagger.yaml artifacts: paths: - public only: - master