This commit is contained in:
Денис 2026-02-14 13:53:51 +03:00
parent 9e4d10c1ec
commit e41e5eb453
4 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
# Docker
PROJECT_NAME="app"
PROJECT_NAME="hermes"
# Database
DB_PORT=5432

View File

@ -1,6 +1,6 @@
# NestJS Starter
# Hermes
A NestJS starter template with authentication, user management, email service, and database setup.
Backend service with authentication, user management, email service, and database setup.
## Features

View File

@ -1,7 +1,7 @@
{
"name": "nestjs-starter",
"name": "hermes",
"version": "0.0.1",
"description": "NestJS starter with auth, users, mail, and database",
"description": "Hermes — backend service with auth, users, mail, and database",
"author": "",
"private": true,
"license": "UNLICENSED",

View File

@ -29,8 +29,8 @@ async function bootstrap() {
});
const docsConfig = new DocumentBuilder()
.setTitle('API')
.setDescription('API Documentation')
.setTitle('Hermes API')
.setDescription('Hermes API Documentation')
.setVersion('1.0')
.addBearerAuth()
.build();