Writing OpenAPI( Swagger ) Design First Specification: In previous post, I described all about the swagger in brief, What it is?, Why it is required?, How to used and implementation? If you are new for Swagger then see my previous post Swagger APIs Server - Complete Description and Integration with JAX-RS, MAVEN and JBoss Server , I am sure that you will be get all details about Swagger with implementation. Here now I am going to give design first approach to write APIs design using YAML.
GitHub The “Git” in GitHub To understand GitHub, you must first have an understanding of Git. Git is an open-source version control system that was started by Linus Trovalds – the same person who created Linux. Git is similar to other version control systems – Subversion , CVS, and Mercurial to name a few. Version control systems So, Git is a “version control system,” what’s that mean? When developers are creating something (an application, for example), they are making constant changes to the code and releasing new versions, up to and after the first official (non-beta) release. Version control systems keep these revisions straight, and store the modifications in a central repository. This allows developers to easily collaborate, as they can download a new version of the software, make changes, and upload the newest revision. Every developer can see these new changes, download them, and contribute. Similarly, people who have nothing to do with the development o...