Skip to content

Commit fe28b49

Browse files
author
Aleksi Pekkala
committed
Remove manual swagger.json and references, update README
1 parent efbf718 commit fe28b49

File tree

6 files changed

+1
-639
lines changed

6 files changed

+1
-639
lines changed

.env.example

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ GRAPHQL_EDITOR=true
6565
#
6666
SWAGGER_ENABLED=true
6767
SWAGGER_ROUTE=/swagger
68-
SWAGGER_FILE=api/swagger.json
6968
SWAGGER_USERNAME=admin
7069
SWAGGER_PASSWORD=1234
7170

.env.test

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ GRAPHQL_EDITOR=false
4747
#
4848
SWAGGER_ENABLED=true
4949
SWAGGER_ROUTE=/swagger
50-
SWAGGER_FILE=api/swagger.json
5150
SWAGGER_USERNAME=admin
5251
SWAGGER_PASSWORD=1234
5352

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Try it!! We are happy to hear your feedback or any kind of new features.
4646
- **Easy Exception Handling** thanks to [routing-controllers](https://github.com/pleerock/routing-controllers).
4747
- **Smart Validation** thanks to [class-validator](https://github.com/pleerock/class-validator) with some nice annotations.
4848
- **Custom Validators** to validate your request even better and stricter. [custom-validation-classes](https://github.com/pleerock/class-validator#custom-validation-classes).
49-
- **API Documentation** thanks to [swagger](http://swagger.io/).
49+
- **API Documentation** thanks to [swagger](http://swagger.io/) and [routing-controllers-openapi](https://github.com/epiphone/routing-controllers-openapi).
5050
- **API Monitoring** thanks to [express-status-monitor](https://github.com/RafalWilinski/express-status-monitor).
5151
- **Integrated Testing Tool** thanks to [Jest](https://facebook.github.io/jest).
5252
- **E2E API Testing** thanks to [supertest](https://github.com/visionmedia/supertest).
@@ -215,7 +215,6 @@ The swagger and the monitor route can be altered in the `.env` file.
215215
| **src/api/resolvers/** | GraphQL resolvers (query, mutation & field-resolver) |
216216
| **src/api/types/** | GraphQL types ,input-types and scalar types |
217217
| **src/api/** schema.gql | Generated GraphQL schema |
218-
| **src/api/** swagger.json | Swagger documentation |
219218
| **src/auth/** | Authentication checkers and services |
220219
| **src/core/** | The core features like logger and env variables |
221220
| **src/database/factories** | Factory the generate fake entities |

package-scripts.js

-8
Original file line numberDiff line numberDiff line change
@@ -106,18 +106,10 @@ module.exports = {
106106
copy: {
107107
default: {
108108
script: series(
109-
`nps copy.swagger`,
110109
`nps copy.public`
111110
),
112111
hiddenFromHelp: true
113112
},
114-
swagger: {
115-
script: copy(
116-
'./src/api/swagger.json',
117-
'./dist'
118-
),
119-
hiddenFromHelp: true
120-
},
121113
public: {
122114
script: copy(
123115
'./src/public/*',

0 commit comments

Comments
 (0)