Swagger-Manager is a web-tool built with SailsJS and AngularJS to document and test your REST-API. Create and manage your REST-APIs and store information persistently.
Run API-tests manually and automatically to verify your HTTP-Responses from your REST webservice. Used test-tools are test-runner Mocha, assertion-library Chai, and plug-in Chai-HTTP.
-
Backend
- Build with SailsJS
- RESTful webservice
- Supports different database adapters like MySQL or MongoDB
-
Frontend
- Build with AngularJS
- Material Design
-
Swagger Support
- Link a SwaggerUI distribution for viewing your specifications
- Export API specification in Swagger compatible format
- Use your specification for generating code to various languages (Swagger CodeGen)
- NodeJS, npm
- Bower
- Ruby (Bundler)
- Apache Web-Server
- Database (MySQL, MongoDB)
Database Model is build with MySQL-Workbench and is located at ./database_model/model_database.mwb. Please read the SailsJS documentation for configuring different database adapters.
Create a database with phpmyadmin and synchronise ./database-modeldatabase-model.mwb with your web-server-database. View SailsJS documentation for setting up adapters in ./backend/config/connections.js.
API-Testing refer to connections mysql_local and mysql_production according to the environments development and production.
Example: ./backend/config/connections.js
mysql_local: {
adapter : 'sails-mysql',
host : 'localhost',
port : 3306,
user : 'your-database-user',
password : 'your-password',
database : 'your-database-name'
},
mysql_production: {
adapter : 'sails-mysql',
host : 'localhost',
port : 3306,
user : 'your-database-user',
password : 'your-password',
database : 'your-database-name'
}
cd backend
- change directory to ./backendnpm install
- install node dependencies
sails lift
- start server- hosts REST Web Service at port 1337. http://{yourHost}:1337/
cd frontend
- change directory to ./frontendnpm install
- install node dependenciesbundle install
- install gemsbower install
- install bower dependencies
grunt serve
- build app for developgrunt build production
- build distribution for deployment- hosts at port 9009. http://{yourHost}:9009/#/
cd frontend
grunt test
Create your own fork of swagger-manager
To share your changes, submit a pull request.
Copyright (c) 2016 DREEBIT GmbH
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.