Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development #520

Merged
merged 24 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9fa78ae
feat: added controller private
ack-id Jun 20, 2024
4bce083
Merge branch 'development' of github.com:andrechristikan/ack-nestjs-b…
ack-id Jun 20, 2024
8d5c26e
fix: initial console log
ack-id Jun 20, 2024
108db2f
fix: user not self pipe
ack-id Jun 20, 2024
d7929c9
fix: resolve mapping
ack-id Jun 20, 2024
41d69b8
fix: pagination module, and map country short
ack-id Jun 20, 2024
202d255
feat: added type at user password history
ack-id Jun 23, 2024
f17a1f1
fix: map list fixed
ack-id Jun 23, 2024
4f23854
fix: status code named
ack-id Jun 30, 2024
4f0f1bc
feat: delete readonly attribute at dto and update package
ack-id Jul 11, 2024
c386de8
feat: version 6.2.0
ack-id Aug 2, 2024
bfe5423
refactor: move enum to enums folders
ack-id Aug 6, 2024
5ce3b52
refactor: database service make straight forward to using mongoose
ack-id Aug 9, 2024
e5c2a10
fix: common and app unit test
ack-id Aug 9, 2024
8557325
fix: move aws module to modules folder
ack-id Aug 9, 2024
a2948ce
fix: request and import exception, and merge docs into 1 doc
ack-id Aug 11, 2024
9457322
feat: aws presign url
ack-id Aug 11, 2024
5884a0f
feat: add bullmq as email queue, fix language, move some endpoints, a…
ack-id Aug 11, 2024
022bad9
feat: email template fix, added update profile and delete
ack-id Aug 12, 2024
7518e77
feat: device module todo added
ack-id Aug 12, 2024
51836ec
fix: error routes shared module
ack-id Aug 12, 2024
f09d48c
feat: added redis cached
ack-id Aug 13, 2024
1f0c0de
fix: readme update
ack-id Aug 13, 2024
1969e18
Merge branch 'main' into development
ack-id Aug 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
73 changes: 35 additions & 38 deletions .commitlintrc
Original file line number Diff line number Diff line change
@@ -1,41 +1,38 @@
{
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0,
"always"
"extends": [
"@commitlint/config-conventional"
],
"subject-case": [
2,
"always",
[
"sentence-case",
"start-case",
"pascal-case",
"upper-case",
"lower-case",
"camel-case"
]
],
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"sample"
]
]
}
"rules": {
"body-max-line-length": [
0,
"always"
],
"subject-case": [
2,
"always",
[
"sentence-case",
"start-case",
"pascal-case",
"upper-case",
"lower-case",
"camel-case"
]
],
"type-enum": [
2,
"always",
[
"ci",
"doc",
"feat",
"fix",
"hotfix",
"refactor",
"revert",
"style",
"test"
]
]
}
}
16 changes: 10 additions & 6 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_NAME=ACK
APP_NAME=NestJS_ACK
APP_ENV=development
APP_LANGUAGE=en
APP_TIMEZONE=Asia/Jakarta
Expand All @@ -11,16 +11,13 @@ HTTP_PORT=3000
URL_VERSIONING_ENABLE=true
URL_VERSION=1

JOB_ENABLE=false

DATABASE_URI=mongodb://admin:password@localhost:30001,localhost:30002,localhost:30003/ack?replicaSet=rs0&retryWrites=true&w=majority
DATABASE_URI=mongodb://host.docker.internal:27017,host.docker.internal:27018,host.docker.internal:27019/ack?retryWrites=true&w=majority&replicaSet=rs0
DATABASE_DEBUG=false

AUTH_JWT_SUBJECT=AckDevelopment
AUTH_JWT_ISSUER=https://example.com
AUTH_JWT_AUDIENCE=ack

AUTH_JWT_ACCESS_TOKEN_EXPIRED=1h
AUTH_JWT_ACCESS_TOKEN_EXPIRED=15m
AUTH_JWT_ACCESS_TOKEN_SECRET_KEY=1234567890
AUTH_JWT_REFRESH_TOKEN_EXPIRED=182d
AUTH_JWT_REFRESH_TOKEN_SECRET_KEY=0987654321
Expand All @@ -39,4 +36,11 @@ AWS_SES_CREDENTIAL_KEY=
AWS_SES_CREDENTIAL_SECRET=
AWS_SES_REGION=ap-southeast-3

REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
REDIS_TLS=false

SENTRY_DSN=

CLIENT_URL=https://example.com
15 changes: 0 additions & 15 deletions .github/dependabot.yml

This file was deleted.

Loading
Loading