🌐
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/
🌐
GitHub
github.com › ITesic › gitlab-swagger-utilities
GitHub - ITesic/gitlab-swagger-utilities: Edit and preview swagger files directly in Gitlab · GitHub
Edit and preview swagger files directly in Gitlab. Contribute to ITesic/gitlab-swagger-utilities development by creating an account on GitHub.
Forked by 7 users
Languages: JavaScript 59.8% | HTML 34.9% | CSS 5.3%
Discussions

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
🌐 r/gitlab
4
5
December 23, 2024
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
🌐 github.com
8
August 18, 2022
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
🌐 forum.gitlab.com
5
0
June 11, 2015
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
🌐 stackoverflow.com
🌐
Medium
medium.com › hoursofoperation › auto-generate-swagger-docs-to-gitlab-pages-ca040230df3a
Auto-generate Swagger docs to Gitlab Pages | by Aron Budinszky | hoursofoperation | Medium
November 19, 2019 - Auto-generate Swagger docs to Gitlab Pages After you created your OpenAPI specs, you can automatically generate and publish your API documentation to Gitlab Pages using Gitlab shared runners. Add …
🌐
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.

🌐
GitHub
github.com › go-gitea › gitea › issues › 20852
OpenAPI Viewer · Issue #20852 · go-gitea/gitea
August 18, 2022 - 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 it's a almost-zero cost addition. GitLab...
Author: go-gitea
🌐
GitLab
gitlab.com › gitlab.org › #360560
Swagger UI viewer: support the showCommonExtensions option (#360560) · Issues · GitLab.org / GitLab · GitLab
April 26, 2022 - Swagger UI does not by default display many of the common schema parameters such as minLength, maxLength, pattern, etc. in the interactive endpoint view (they are displayed in...
🌐
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.
🌐
GitHub
gist.github.com › mtvbrianking › 57faef18645e1e7f69c59ac18423610c
Gitlab pages deploy swagger docs · GitHub
This file renders the swagger.json file that resides here: https://petstore.swagger.io/v2/swagger.json "sed -t" looks for the line which contains the path to swagger.json file and replaces it with "your" json file, so that it renders your custom json with the same formatting.
Find elsewhere
🌐
GitHub
github.com › buchenberg › swagger-editor-gitlab
GitHub - buchenberg/swagger-editor-gitlab: Swagger Editor with Gitlab support (work in progress)
Swagger Editor lets you edit Swagger API specifications in YAML inside your browser and to preview documentations in real time.
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...
🌐
StackShare
stackshare.io › stackups › gitlab-pages-vs-swagger-ui
Swagger UI vs GitLab Pages | What are the differences? | StackShare
Compare Swagger UI and GitLab Pages - features, pros, cons, and real-world usage from developers.
🌐
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