All Projects → Apicurio → Apicurio Studio

Apicurio / Apicurio Studio

Licence: apache-2.0
Open Source API Design

Programming Languages

java
68154 projects - #9 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Apicurio Studio

Angular Springboot Rest Jwt
Springboot, Angular and JWT security - Example Project based on Northwind Order Processing
Stars: ✭ 603 (-5.49%)
Mutual labels:  swagger, openapi, angular2
Nswag
The Swagger/OpenAPI toolchain for .NET, ASP.NET Core and TypeScript.
Stars: ✭ 4,825 (+656.27%)
Mutual labels:  swagger, openapi
Goa
Design-based APIs and microservices in Go
Stars: ✭ 4,493 (+604.23%)
Mutual labels:  swagger, openapi
Swagger Parser
Swagger Spec to Java POJOs
Stars: ✭ 468 (-26.65%)
Mutual labels:  swagger, openapi
Guardrail
Principled code generation from OpenAPI specifications
Stars: ✭ 396 (-37.93%)
Mutual labels:  swagger, openapi
Swag
Automatically generate RESTful API documentation with Swagger 2.0 for Go.
Stars: ✭ 5,173 (+710.82%)
Mutual labels:  swagger, openapi
Studio
The modern editor for API Design and Technical Writing.
Stars: ✭ 459 (-28.06%)
Mutual labels:  swagger, openapi
Connexion
Swagger/OpenAPI First framework for Python on top of Flask with automatic endpoint validation & OAuth2 support
Stars: ✭ 3,869 (+506.43%)
Mutual labels:  swagger, openapi
Create Openapi Repo
🤖 Generator for GH repo to help you manage the OpenAPI definition lifecycle
Stars: ✭ 513 (-19.59%)
Mutual labels:  swagger, openapi
Oas Kit
Convert Swagger 2.0 definitions to OpenAPI 3.0 and resolve/validate/lint
Stars: ✭ 516 (-19.12%)
Mutual labels:  swagger, openapi
Generator Express No Stress
🚂 A Yeoman generator for Express.js based 12-factor apps and apis
Stars: ✭ 534 (-16.3%)
Mutual labels:  swagger, openapi
Datamodel Code Generator
Pydantic model generator for easy conversion of JSON, OpenAPI, JSON Schema, and YAML data sources.
Stars: ✭ 393 (-38.4%)
Mutual labels:  swagger, openapi
Swaggen
OpenAPI/Swagger 3.0 Parser and Swift code generator
Stars: ✭ 385 (-39.66%)
Mutual labels:  swagger, openapi
Dredd
Language-agnostic HTTP API Testing Tool
Stars: ✭ 3,770 (+490.91%)
Mutual labels:  swagger, openapi
Full Stack Fastapi Postgresql
Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.
Stars: ✭ 7,635 (+1096.71%)
Mutual labels:  swagger, openapi
Swagger Ui
Swagger UI is a collection of HTML, JavaScript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API.
Stars: ✭ 21,279 (+3235.27%)
Mutual labels:  swagger, openapi
Ring Swagger
Swagger Spec for Clojure Web Apps
Stars: ✭ 351 (-44.98%)
Mutual labels:  swagger, openapi
Loopback Next
LoopBack makes it easy to build modern API applications that require complex integrations.
Stars: ✭ 3,972 (+522.57%)
Mutual labels:  swagger, openapi
Awesome Openapi3
😎 A list of awesome projects related to OpenAPI 3.0.x, curated by the community
Stars: ✭ 469 (-26.49%)
Mutual labels:  swagger, openapi
Swagger Express Middleware
Swagger 2.0 middlware and mocks for Express.js
Stars: ✭ 543 (-14.89%)
Mutual labels:  swagger, openapi

Verify Build Workflow

The apicurio-studio project (Open Source API Design Studio)

Summary

This is the official Git repository for the apicurio studio project: http://www.apicur.io/

The apicurio studio project is a standalone API design studio that can be used to create new or edit existing API designs (using the OpenAPI specification).

Get the code

The easiest way to get started with the code is to create your own fork of this repository, and then clone your fork:

  $ git clone [email protected]:<you>/apicurio-studio.git
  $ cd apicurio-studio
  $ git remote add upstream git://github.com/apicurio/apicurio-studio.git

At any time, you can pull changes from the upstream and merge them onto your master:

  $ git checkout master               # switches to the 'master' branch
  $ git pull upstream master          # fetches all 'upstream' changes and merges 'upstream/master' onto your 'master' branch
  $ git push origin                   # pushes all the updates to your fork, which should be in-sync with 'upstream'

The general idea is to keep your 'master' branch in-sync with the 'upstream/master'.

Building apicurio-studio

Requirements

  • Maven 3.x
  • Java 8 or 11 (recommended)

The following command compiles all the code, installs the JARs into your local Maven repository, and runs all of the unit tests:

  $ mvn clean install

Quickstart (i.e. How To Run It)

The fastest way to get started using Apicurio Studio is to use the quickstart. The Apicurio quickstart is produced as part of the full maven build - you can find it in distro/quickstart/target as a ZIP file. To start up the quickstart, use the following commands from the top-level of the repository:

  $ rm -rf ./distro/quickstart/target/apicurio-studio-*-SNAPSHOT
  $ unzip distro/quickstart/target/apicurio-studio-*-quickstart.zip -d distro/quickstart/target
  $ ./distro/quickstart/target/apicurio-studio-*-SNAPSHOT/bin/standalone.sh -c standalone-apicurio.xml

This will start Wildfly on your local machine and you can access the UI at http://localhost:8080.

Contribute fixes and features

Apicurio Studio is open source, and we welcome anybody who wants to participate and contribute!

Please follow Setting your development environment guide to setup your local machine for development. The guide assumes the use of the Eclipse IDE for Java development (backend) but is not required - developers should be able to adapt the instructions to their particular environment.

If you want to fix a bug or make any changes, please log an issue in GitHub describing the bug or new feature. Then we highly recommend making the changes on a topic branch named with the JIRA issue number. For example, this command creates a branch for the APISTUDIO-1234 issue:

  $ git checkout -b apicurio-studio-1234

After you're happy with your changes and a full build (with unit tests) runs successfully, commit your changes on your topic branch. Then it's time to check for and pull any recent changes that were made in the official repository:

  $ git checkout master               # switches to the 'master' branch
  $ git pull upstream master          # fetches all 'upstream' changes and merges 'upstream/master' onto your 'master' branch
  $ git checkout apicurio-studio-1234   # switches to your topic branch
  $ git rebase master                 # reapplies your changes on top of the latest in master
                                      # (i.e., the latest from master will be the new base for your changes)

If the pull grabbed a lot of changes, you should rerun your build to make sure your changes are still good. You can then either create patches (one file per commit, saved in ~/apicurio-studio-1234) with

  $ git format-patch -M -o ~/apicurio-studio-1234 orgin/master

and upload them to the JIRA issue, or you can push your topic branch and its changes into your public fork repository

  $ git push origin apicurio-studio-1234         # pushes your topic branch into your public fork of apicurio-studio

and generate a pull-request for your changes.

We prefer pull-requests, because we can review the proposed changes, comment on them, discuss them with you, and likely merge the changes right into the official repository.

Please try to create one commit per feature or fix, generally the easiest way to do this is via git squash. This makes reverting changes easier, and avoids needlessly polluting the repository history with checkpoint commits.

Code Formatting

When you are hacking on some apicurio-studio code, we'd really appreciate it if you followed the apicurio-studio coding standards. If you're using Eclipse, you can find a code formatter config file here:

tools/src/eclipse/apicurio-eclipse-formatter.xml

You should be able to import that guy straight into Eclipse by going to Window->Preferences :: Java/Code Style/Formatter

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].