diff --git a/.env.example b/.env.example index 3cb3f0d..c446116 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ # Docker -PROJECT_NAME="app" +PROJECT_NAME="hermes" # Database DB_PORT=5432 diff --git a/README.md b/README.md index 8efc227..577c678 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package.json b/package.json index a2d06b0..b83629f 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/main.ts b/src/main.ts index 50e5a46..4115b7a 100644 --- a/src/main.ts +++ b/src/main.ts @@ -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();