Skip to content

Commit

Permalink
Merge pull request EO2-WAVY#117 from EO2-WAVY/develop
Browse files Browse the repository at this point in the history
[non-issue] 웨이비 Backend 1.0.0 배포
  • Loading branch information
Yeonwu authored Oct 26, 2021
2 parents 09ea625 + 54b3b6a commit e1b56c0
Show file tree
Hide file tree
Showing 89 changed files with 25,344 additions and 16,396 deletions.
44 changes: 22 additions & 22 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
root: true,
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',
},
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
root: true,
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',
},
};
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vscode
# Logs
logs
*.log
Expand Down Expand Up @@ -70,6 +71,7 @@ typings/

# dotenv environment variables file
.env
.env*
.env.test

# parcel-bundler cache (https://parceljs.org/)
Expand Down
7 changes: 4 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"singleQuote": true,
"trailingComma": "all"
}
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 4
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors

## Stay in touch

- Author - [Kamil Myśliwiec](https://kamilmysliwiec.com)
- Website - [https://nestjs.com](https://nestjs.com/)
- Twitter - [@nestframework](https://twitter.com/nestframework)
- Author - [Kamil Myśliwiec](https://kamilmysliwiec.com)
- Website - [https://nestjs.com](https://nestjs.com/)
- Twitter - [@nestframework](https://twitter.com/nestframework)

## License

Expand Down
34 changes: 34 additions & 0 deletions ecosystem.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
module.exports = {
apps: [
{
name: 'dev-app',
script: './dist/main.js',
instances: '-1',
autorestart: true,
watch: false,
env: {
NODE_ENV: 'dev',
},
},
{
name: 'test-app',
script: './dist/main.js',
instances: '-1',
autorestart: true,
watch: false,
env: {
NODE_ENV: 'test',
},
},
{
name: 'prod-app',
script: './dist/main.js',
instances: '-1',
autorestart: true,
watch: false,
env: {
NODE_ENV: 'prod',
},
},
],
};
1 change: 0 additions & 1 deletion goorm.manifest

This file was deleted.

4 changes: 2 additions & 2 deletions nest-cli.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"collection": "@nestjs/schematics",
"sourceRoot": "src"
"collection": "@nestjs/schematics",
"sourceRoot": "src"
}
Loading

0 comments on commit e1b56c0

Please sign in to comment.