-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from maximmai/maximmai-fixed-typo-and-improved-…
…constants Fixed a typo and moved the hardcoded url to constants file
- Loading branch information
Showing
2 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export const SWAGGER_API_ROOT = 'api/docs'; | ||
export const SWAGGER_API_NAME = 'Nest Next Boilerplate v1 API'; | ||
export const SWAGGER_API_DESCRIPTION = 'Basic docs for API in version 1'; | ||
export const SWAGGER_API_CURRENT_VERSION = '1.0'; | ||
export const SWAGGER_API_CURRENT_VERSION = '1.0'; | ||
export const SERVER_URL = 'http://localhost:4000'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters