Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: w3tecch/express-typescript-boilerplate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: develop
Choose a base ref
...
head repository: siner308/customized-express-typescript-boilerplate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: develop-customized
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 20 commits
  • 114 files changed
  • 2 contributors

Commits on Jan 3, 2020

  1. Copy the full SHA
    8423924 View commit details
  2. .editorconfig 수정

    BlizzardBlue committed Jan 3, 2020
    Copy the full SHA
    51263b8 View commit details
  3. .env 설정값 변경

    BlizzardBlue committed Jan 3, 2020
    Copy the full SHA
    287c321 View commit details
  4. tslint 수정

    BlizzardBlue committed Jan 3, 2020
    Copy the full SHA
    80bba5a View commit details
  5. aws 환경변수 추가

    BlizzardBlue committed Jan 3, 2020
    Copy the full SHA
    87f53a5 View commit details
  6. .dockerignore 수정

    BlizzardBlue committed Jan 3, 2020
    Copy the full SHA
    f76a8be View commit details
  7. Copy the full SHA
    42cb2ef View commit details
  8. Copy the full SHA
    00ea930 View commit details
  9. Copy the full SHA
    3fd6417 View commit details
  10. package.json 수정

    BlizzardBlue committed Jan 3, 2020
    Copy the full SHA
    1e543f0 View commit details

Commits on Jan 20, 2020

  1. .env.example 개선

    BlizzardBlue committed Jan 20, 2020
    Copy the full SHA
    d6530be View commit details
  2. Copy the full SHA
    0fd00e9 View commit details
  3. Copy the full SHA
    d8fe332 View commit details
  4. .env 버그픽스

    BlizzardBlue committed Jan 20, 2020
    Copy the full SHA
    7bc8ae7 View commit details

Commits on Jan 21, 2020

  1. .env 버그픽스

    BlizzardBlue committed Jan 21, 2020
    Copy the full SHA
    fc7833c View commit details

Commits on Feb 12, 2020

  1. Copy the full SHA
    a769efc View commit details
  2. Copy the full SHA
    4a76fd8 View commit details
  3. Copy the full SHA
    a611d26 View commit details

Commits on Feb 21, 2020

  1. Copy the full SHA
    41179c4 View commit details

Commits on Mar 6, 2020

  1. 도커라이징

    siner308 committed Mar 6, 2020
    Copy the full SHA
    4cd29af View commit details
Showing with 2,971 additions and 2,370 deletions.
  1. +2 −1 .dockerignore
  2. +649 −14 .editorconfig
  3. +30 −21 .env.example
  4. +10 −2 .env.test
  5. +0 −17 .vscode/cSpell.json
  6. +0 −11 .vscode/extensions.json
  7. +0 −29 .vscode/launch.json
  8. +0 −10 .vscode/settings.json
  9. +0 −27 .vscode/tasks.json
  10. +7 −6 Dockerfile
  11. +13 −0 docker-compose.yml
  12. +272 −263 package-scripts.js
  13. +6 −23 package.json
  14. +0 −81 src/api/controllers/PetController.ts
  15. +82 −0 src/api/controllers/SamplePetController.ts
  16. +101 −0 src/api/controllers/SampleUserController.ts
  17. +0 −100 src/api/controllers/UserController.ts
  18. +0 −7 src/api/errors/PetNotFoundError.ts
  19. +7 −0 src/api/errors/SamplePetNotFoundError.ts
  20. +7 −0 src/api/errors/SampleUserNotFoundError.ts
  21. +0 −7 src/api/errors/UserNotFoundError.ts
  22. +3 −3 src/api/middlewares/CompressionMiddleware.ts
  23. +21 −20 src/api/middlewares/ErrorHandlerMiddleware.ts
  24. +8 −8 src/api/middlewares/LogMiddleware.ts
  25. +6 −6 src/api/middlewares/SecurityHstsMiddleware.ts
  26. +3 −3 src/api/middlewares/SecurityMiddleware.ts
  27. +3 −3 src/api/middlewares/SecurityNoCacheMiddleware.ts
  28. +0 −34 src/api/models/Pet.ts
  29. +34 −0 src/api/models/SamplePet.ts
  30. +66 −0 src/api/models/SampleUser.ts
  31. +0 −66 src/api/models/User.ts
  32. +0 −18 src/api/repositories/PetRepository.ts
  33. +18 −0 src/api/repositories/SamplePetRepository.ts
  34. +8 −0 src/api/repositories/SampleUserRepository.ts
  35. +0 −8 src/api/repositories/UserRepository.ts
  36. +0 −54 src/api/resolvers/PetResolver.ts
  37. +55 −0 src/api/resolvers/SamplePetResolver.ts
  38. +29 −0 src/api/resolvers/SampleUserResolver.ts
  39. +0 −28 src/api/resolvers/UserResolver.ts
  40. +0 −60 src/api/services/PetService.ts
  41. +61 −0 src/api/services/SamplePetService.ts
  42. +51 −0 src/api/services/SampleUserService.ts
  43. +0 −50 src/api/services/UserService.ts
  44. +17 −0 src/api/subscribers/SampleUserEventSubscriber.ts
  45. +0 −17 src/api/subscribers/UserEventSubscriber.ts
  46. +6 −6 src/api/subscribers/events.ts
  47. +0 −28 src/api/types/Pet.ts
  48. +28 −0 src/api/types/SamplePet.ts
  49. +33 −0 src/api/types/SampleUser.ts
  50. +0 −33 src/api/types/User.ts
  51. +0 −16 src/api/types/input/PetInput.ts
  52. +16 −0 src/api/types/input/SamplePetInput.ts
  53. +18 −18 src/app.ts
  54. +33 −32 src/auth/AuthService.ts
  55. +21 −21 src/auth/authorizationChecker.ts
  56. +5 −5 src/auth/currentUserChecker.ts
  57. +0 −16 src/database/factories/PetFactory.ts
  58. +16 −0 src/database/factories/SamplePetFactory.ts
  59. +22 −0 src/database/factories/SampleUserFactory.ts
  60. +0 −22 src/database/factories/UserFactory.ts
  61. +55 −0 src/database/migrations/1511105183653-CreateSampleUserTable.ts
  62. +0 −55 src/database/migrations/1511105183653-CreateUserTable.ts
  63. +0 −42 src/database/migrations/1512663524808-CreatePetTable.ts
  64. +42 −0 src/database/migrations/1512663524808-CreateSamplePetTable.ts
  65. +3 −3 src/database/migrations/1512663990063-AddUserRelationToPetTable.ts
  66. +0 −42 src/database/seeds/CreateBruce.ts
  67. +0 −19 src/database/seeds/CreatePets.ts
  68. +42 −0 src/database/seeds/CreateSampleBruce.ts
  69. +19 −0 src/database/seeds/CreateSamplePets.ts
  70. +12 −0 src/database/seeds/CreateSampleUsers.ts
  71. +0 −12 src/database/seeds/CreateUsers.ts
  72. +5 −5 src/decorators/DLoader.ts
  73. +4 −4 src/decorators/EventDispatcher.ts
  74. +5 −5 src/decorators/Logger.ts
  75. +63 −57 src/env.ts
  76. +25 −25 src/lib/banner.ts
  77. +22 −22 src/lib/env/utils.ts
  78. +73 −73 src/lib/graphql/graphql-error-handling.ts
  79. +21 −21 src/lib/graphql/index.ts
  80. +35 −35 src/lib/logger/Logger.ts
  81. +7 −4 src/lib/logger/LoggerInterface.ts
  82. +10 −10 src/loaders/eventDispatchLoader.ts
  83. +55 −35 src/loaders/expressLoader.ts
  84. +34 −34 src/loaders/graphqlLoader.ts
  85. +13 −13 src/loaders/homeLoader.ts
  86. +7 −7 src/loaders/iocLoader.ts
  87. +14 −14 src/loaders/monitorLoader.ts
  88. +8 −8 src/loaders/publicLoader.ts
  89. +47 −47 src/loaders/swaggerLoader.ts
  90. +14 −13 src/loaders/typeormLoader.ts
  91. +16 −16 src/loaders/winstonLoader.ts
  92. +2 −2 src/types/json.d.ts
  93. +20 −20 test/e2e/api/info.test.ts
  94. +65 −0 test/e2e/api/sampleUsers.test.ts
  95. +0 −65 test/e2e/api/users.test.ts
  96. +19 −19 test/e2e/utils/bootstrap.ts
  97. +6 −6 test/e2e/utils/server.ts
  98. +5 −5 test/e2e/utils/typeormLoader.ts
  99. +0 −52 test/integration/PetService.test.ts
  100. +52 −0 test/integration/SamplePetService.test.ts
  101. +40 −40 test/unit/auth/AuthService.test.ts
  102. +4 −4 test/unit/lib/EventDispatcherMock.ts
  103. +16 −16 test/unit/lib/LogMock.ts
  104. +22 −22 test/unit/lib/RepositoryMock.ts
  105. +26 −26 test/unit/middlewares/ErrorHandlerMiddleware.test.ts
  106. +41 −0 test/unit/services/SampleUserService.test.ts
  107. +0 −41 test/unit/services/UserService.test.ts
  108. +46 −0 test/unit/validations/SampleUserValidations.test.ts
  109. +0 −46 test/unit/validations/UserValidations.test.ts
  110. +14 −14 test/utils/database.ts
  111. +8 −8 test/utils/logger.ts
  112. +39 −39 tsconfig.json
  113. +124 −126 tslint.json
  114. +4 −4 yarn.lock
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.vscode
.idea
node_modules
test
.editorconfig
@@ -8,4 +9,4 @@ test
appveyor.yml
icon.png
LICENSE
README.md
README.md
Loading