Skip to content

Commit 4f9709b

Browse files
Let's start 🚀
0 parents  commit 4f9709b

33 files changed

+9933
-0
lines changed

.env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
RABBITMQ_ENABLE_HANDLERS='true'

.eslintrc.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser',
3+
parserOptions: {
4+
project: 'tsconfig.json',
5+
tsconfigRootDir: __dirname,
6+
sourceType: 'module',
7+
},
8+
plugins: ['@typescript-eslint/eslint-plugin'],
9+
extends: [
10+
'plugin:@typescript-eslint/recommended',
11+
'plugin:prettier/recommended',
12+
],
13+
root: true,
14+
env: {
15+
node: true,
16+
jest: true,
17+
},
18+
ignorePatterns: ['.eslintrc.js'],
19+
rules: {
20+
'@typescript-eslint/interface-name-prefix': 'off',
21+
'@typescript-eslint/explicit-function-return-type': 'off',
22+
'@typescript-eslint/explicit-module-boundary-types': 'off',
23+
'@typescript-eslint/no-explicit-any': 'off',
24+
},
25+
};

.gitignore

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# compiled output
2+
/dist
3+
/node_modules
4+
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
pnpm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
lerna-debug.log*
13+
14+
# OS
15+
.DS_Store
16+
17+
# Tests
18+
/coverage
19+
/.nyc_output
20+
21+
# IDEs and editors
22+
/.idea
23+
.project
24+
.classpath
25+
.c9/
26+
*.launch
27+
.settings/
28+
*.sublime-workspace
29+
30+
# IDE - VSCode
31+
.vscode/*
32+
!.vscode/settings.json
33+
!.vscode/tasks.json
34+
!.vscode/launch.json
35+
!.vscode/extensions.json
36+
37+
.history/

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all"
4+
}

Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:20.5.1-slim
2+
3+
RUN apt update -y && apt install procps -y
4+
5+
RUN npm install -g @nestjs/[email protected]
6+
7+
USER node
8+
9+
WORKDIR /home/node/app
10+
11+
CMD [ "tail", "-f", "/dev/null" ]

README.md

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# NestJS Standalone Services Example
2+
3+
Este é um projeto NestJS que demonstra como criar serviços standalone para gRPC, Kafka, BullMQ (BullJs) e RabbitMQ. Cada serviço é executado de forma separada em uma pasta CMD com arquivos específicos para cada um dos serviços. O objetivo é permitir que você inicie e gerencie esses serviços individualmente. Você pode executar esses serviços em contêineres Docker independentes, orquestrados usando docker-compose.
4+
5+
## Project Structure
6+
7+
A estrutura do projeto é organizada da seguinte forma:
8+
9+
```text
10+
nestjs-standalone-services/
11+
12+
├── src/
13+
│ ├── cmd/
14+
│ │ ├── grpc-server.ts
15+
│ │ ├── kafka-consumer.ts
16+
│ │ ├── rabbit-consumer.ts
17+
│ │ ├── queue-consumer.ts
18+
│ ├── main.ts (Serviço HTTP principal)
19+
20+
├── nest-cli.json
21+
├── package.json
22+
├── tsconfig.json
23+
├── README.md
24+
└── docker-compose.yaml
25+
```
26+
27+
## Comandos
28+
29+
Você pode usar os seguintes comandos para iniciar os serviços standalone individualmente:
30+
31+
### Servir os serviços separadamente
32+
33+
> Execução no ambiente de desenvolvimento:
34+
35+
``` bash
36+
## grpc-server:dev
37+
npm run start:dev -- --entryFile cmd/grpc-server
38+
39+
## grpc-server:prod
40+
npm run start:prod -- --entryFile cmd/grpc-server
41+
42+
## kafka-server:dev
43+
npm run start:dev -- --entryFile cmd/kafka-consumer
44+
45+
## kafka-server:prod
46+
npm run start:prod -- --entryFile cmd/kafka-consumer
47+
48+
## rabbit-server:dev
49+
npm run start:dev -- --entryFile cmd/rabbit-consumer
50+
51+
## rabbit-server:prod
52+
npm run start:prod -- --entryFile cmd/rabbit-consumer
53+
54+
## queue-server:dev
55+
npm run start:dev -- --entryFile cmd/queue-consumer
56+
57+
## queue-server:prod
58+
npm run start:prod -- --entryFile cmd/queue-consumer
59+
```
60+
61+
Você pode personalizar os serviços que deseja executar e as configurações dos contêineres no arquivo docker-compose.yaml.

api.http

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
GET http://localhost:3000/products
2+
3+
###
4+
POST http://localhost:3000/products/create-job
5+
Content-Type: application/json
6+
7+
{
8+
"name": "live de nest"
9+
}
10+

docker-compose.yaml

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
version: '3'
2+
3+
services:
4+
app:
5+
build: .
6+
# exemplo
7+
# 1. npm run start
8+
# 2. npm run kafka-server:dev
9+
# 3. npm run grpc-server:dev
10+
# 3. npm run rabbit-server:dev
11+
command: npm run rabbit-server:dev
12+
volumes:
13+
- .:/home/node/app
14+
ports:
15+
- 3000:3000
16+
- 50051:50051
17+
18+
redis:
19+
image: redis:7.0.8-alpine
20+
21+
rabbitmq:
22+
image: rabbitmq:3.8-management-alpine
23+
hostname: rabbitmq
24+
ports:
25+
- 15672:15672
26+
environment:
27+
- RABBITMQ_DEFAULT_USER=admin
28+
- RABBITMQ_DEFAULT_PASS=admin
29+
30+
zookeeper:
31+
image: confluentinc/cp-zookeeper:7.3.0
32+
hostname: zookeeper
33+
container_name: zookeeper
34+
ports:
35+
- "2181:2181"
36+
environment:
37+
ZOOKEEPER_CLIENT_PORT: 2181
38+
ZOOKEEPER_TICK_TIME: 2000
39+
40+
kafka:
41+
image: confluentinc/cp-server:7.3.0
42+
hostname: kafka
43+
container_name: kafka
44+
depends_on:
45+
- zookeeper
46+
ports:
47+
- "9092:9092"
48+
- "9094:9094"
49+
environment:
50+
KAFKA_BROKER_ID: 1
51+
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
52+
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT,OUTSIDE:PLAINTEXT
53+
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092,OUTSIDE://host.docker.internal:9094
54+
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
55+
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
56+
KAFKA_CONFLUENT_LICENSE_TOPIC_REPLICATION_FACTOR: 1
57+
KAFKA_CONFLUENT_BALANCER_TOPIC_REPLICATION_FACTOR: 1
58+
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
59+
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
60+
CONFLUENT_METRICS_ENABLE: 'false'
61+
CONFLUENT_SUPPORT_CUSTOMER_ID: 'anonymous'
62+
63+
control-center:
64+
image: confluentinc/cp-enterprise-control-center:7.3.0
65+
hostname: control-center
66+
container_name: control-center
67+
depends_on:
68+
- kafka
69+
ports:
70+
- "9021:9021"
71+
environment:
72+
CONTROL_CENTER_BOOTSTRAP_SERVERS: 'kafka:29092'
73+
CONTROL_CENTER_REPLICATION_FACTOR: 1
74+
CONTROL_CENTER_INTERNAL_TOPICS_PARTITIONS: 1
75+
CONTROL_CENTER_MONITORING_INTERCEPTOR_TOPIC_PARTITIONS: 1
76+
CONFLUENT_METRICS_TOPIC_REPLICATION: 1
77+
PORT: 9021

nest-cli.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"$schema": "https://json.schemastore.org/nest-cli",
3+
"collection": "@nestjs/schematics",
4+
"sourceRoot": "src",
5+
"compilerOptions": {
6+
"deleteOutDir": true,
7+
"assets": [
8+
"**/*.proto"
9+
],
10+
"watchAssets": true
11+
}
12+
}

0 commit comments

Comments
 (0)