-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(mail): add user email verification
- Loading branch information
Showing
20 changed files
with
732 additions
and
10 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,10 +1,100 @@ | ||
export default { | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Default environment | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Default environment of the application. | ||
| | ||
*/ | ||
|
||
environment: process.env.APP_ENV || 'production', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Application debug | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Set if the application will start in debug mode or not. If in debug mode, | ||
| the application will show sensitive logs and return sensitive data on errors. | ||
| | ||
*/ | ||
|
||
debug: Env('APP_DEBUG', true), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Application Name | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value is the name of your application and can used when you | ||
| need to place the application's name in a email, view or | ||
| other location. | ||
| | ||
*/ | ||
|
||
name: Env('APP_NAME', '@athenna/athenna'), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Application Version | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value is the version of your application and can used when you | ||
| need to place the application's version in a route, view or | ||
| other location. | ||
| | ||
*/ | ||
|
||
version: Env('APP_VERSION', '1.0.0'), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Application Description | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value is the description of your application and can used when you | ||
| need to place the application's description in swagger, view or | ||
| other location. | ||
| | ||
*/ | ||
|
||
description: Env('APP_DESCRIPTION', 'Athenna is awesome!'), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Application source url | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value is the application source url, usually a link to a git repo- | ||
| sitory. | ||
| | ||
*/ | ||
|
||
source: Env('APP_SOURCE', 'https://github.com/AthennaIO'), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Documentation url | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value is the application documentation url, usually a link to the | ||
| main documentation of the API. | ||
| | ||
*/ | ||
|
||
documentation: Env('APP_DOCUMENTATION', 'http://localhost:3000/docs'), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Default Locale | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Default locale to be used by Intl provider. You can always switch drivers | ||
| in runtime or use the official Intl middleware to detect the driver | ||
| based on HTTP headers/query string. | ||
| | ||
*/ | ||
|
||
locale: Env('APP_LOCALE', 'en') | ||
} |
Oops, something went wrong.