Initialize NestJS project with essential configuration files and structure

- Added .env.example for application timezone configuration.
- Created .gitignore to exclude unnecessary files and directories.
- Introduced Prettier configuration in .prettierrc for code formatting.
- Set up ESLint configuration in eslint.config.mjs for code quality checks.
- Added nest-cli.json for NestJS project settings.
- Created package.json with project dependencies and scripts for building, testing, and running the application.
- Generated pnpm-lock.yaml for package management.
- Added README.md with project description and setup instructions.
- Created initial application structure with AppModule, AppController, and AppService.
- Implemented basic unit and e2e tests for the application.
This commit is contained in:
shancheas
2026-08-20 18:31:33 +07:00
parent 0b0bdd9c4b
commit 289ab1006e
18 changed files with 6700 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
# Application default timezone for rendering and naive ISO interpretation.
# Stored values remain UTC unix milliseconds. Fixed offsets only (no IANA names).
# Examples: GMT+7, GMT+07:00, UTC+7, +07:00, +7, +0700
DEFAULT_TIMEZONE=GMT+7