-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* deploy: 3.2333.1-beta * fix: Dockerfile base image
- Loading branch information
Showing
1,331 changed files
with
120,274 additions
and
21,078 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
JWT_SECRET= # required | ||
|
||
MYSQL_PRIMARY_URL= # default: mysql://userfeedback:userfeedback@localhost:13306/userfeedback | ||
MYSQL_SECONDARY_URL= # default: mysql://userfeedback:userfeedback@localhost:13306/userfeedback | ||
MYSQL_SECONDARY_URLS= # default: ["mysql://userfeedback:userfeedback@localhost:13306/userfeedback"] | ||
|
||
SMTP_HOST= # default: localhost | ||
SMTP_PORT= # default: 25 | ||
|
@@ -10,9 +10,15 @@ SMTP_PASSWORD= # default: '' | |
SMTP_SENDER= # default: [email protected] | ||
SMTP_BASE_URL= # default: http://localhost:3000 | ||
|
||
ES_NODE= # default: http://localhost:9200 | ||
ES_USERNAME= # default: "" | ||
ES_PASSWORD= # default: "" | ||
OS_USE= # default: false | ||
OS_NODE= # default: http://localhost:9200 | ||
OS_USERNAME= # default: "" | ||
OS_PASSWORD= # default: "" | ||
|
||
APP_PORT= # default: 4000 | ||
APP_ADDRESS= # default: 0.0.0.0 | ||
APP_ADDRESS= # default: 0.0.0.0 | ||
|
||
AUTO_MIGRATION= # default: false | ||
|
||
MASTER_API_KEY= # default: none | ||
BASE_URL= # default: http://localhost:3000 |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,10 @@ | ||
module.exports = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', | ||
extends: ['ufb'], | ||
parserOptions: { | ||
project: 'tsconfig.json', | ||
tsconfigRootDir: __dirname, | ||
sourceType: 'module', | ||
}, | ||
plugins: ['@typescript-eslint/eslint-plugin'], | ||
extends: ['plugin:@typescript-eslint/recommended', 'custom'], | ||
env: { | ||
node: true, | ||
jest: true, | ||
}, | ||
ignorePatterns: ['.eslintrc.js'], | ||
rules: { | ||
'@typescript-eslint/interface-name-prefix': 'off', | ||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
'@typescript-eslint/explicit-module-boundary-types': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
}, | ||
ignorePatterns: ['jest.config.js', 'jest.setup.js', 'migrations'], | ||
}; |
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 |
---|---|---|
|
@@ -70,22 +70,25 @@ npm run migration:run | |
|
||
## Environment Variables | ||
|
||
| Environment | Description | Default Value | | ||
| ------------------- | ----------------------------------------- | -------------------------------------------------------------- | | ||
| JWT_SECRET | JWT secret | # required | | ||
| MYSQL_PRIMARY_URL | mysql url | mysql://userfeedback:userfeedback@localhost:13306/userfeedback | | ||
| MYSQL_SECONDARY_URL | mysql url | mysql://userfeedback:userfeedback@localhost:13306/userfeedback | | ||
| SMTP_HOST | smtp server host | localhost | | ||
| SMTP_PORT | smtp server port | 25 | | ||
| SMTP_USERNAME | smtp auth username | | | ||
| SMTP_PASSWORD | smtp auth password | | | ||
| SMTP_SENDER | mail sender email | [email protected] | | ||
| SMTP_BASE_URL | 메일에서 리다이렉트할 기본 유저피드백 URL | http://localhost:3000 | | ||
| APP_PORT | the post that the server is running on | 4000 | | ||
| APP_ADDRESS | the address that the server is running on | 0.0.0.0 | | ||
| ES_NODE | elasticsearch node url | http://localhost:9200 | | ||
| ES_USERNAME | elasticsearch username if exists | | | ||
| ES_PASSWORD | elasticsearch password if exists | | | ||
| Environment | Description | Default Value | | ||
| -------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------ | | ||
| JWT_SECRET | JWT secret | # required | | ||
| MYSQL_PRIMARY_URL | mysql url | mysql://userfeedback:userfeedback@localhost:13306/userfeedback | | ||
| MYSQL_SECONDARY_URLS | mysql sub urls (must be json array format) | ["mysql://userfeedback:userfeedback@localhost:13306/userfeedback"] | | ||
| SMTP_HOST | smtp server host | localhost | | ||
| SMTP_PORT | smtp server port | 25 | | ||
| SMTP_USERNAME | smtp auth username | | | ||
| SMTP_PASSWORD | smtp auth password | | | ||
| SMTP_SENDER | mail sender email | [email protected] | | ||
| SMTP_BASE_URL | default UserFeedback URL for mail to be redirected | http://localhost:3000 | | ||
| APP_PORT | the post that the server is running on | 4000 | | ||
| APP_ADDRESS | the address that the server is running on | 0.0.0.0 | | ||
| OS_NODE | opensearch node url | http://localhost:9200 | | ||
| OS_USERNAME | opensearch username if exists | | | ||
| OS_PASSWORD | opensearch password if exists | | | ||
| AUTO_MIGRATION | set 'true' if you want to make the database migration automatically | | | ||
| MASTER_API_KEY | set a key if you want to make a master key for creating feedback | | | ||
| NODE_OPTIONS | set some options if you want to add for node execution (e.g. max_old_space_size) | | | ||
|
||
## Learn More | ||
|
||
|
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
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
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
Oops, something went wrong.