https://github.com/montycoder0701/nestjs-starter
Boilerplate including most things you need in Nestjs
https://github.com/montycoder0701/nestjs-starter
Last synced: 8 months ago
JSON representation
Boilerplate including most things you need in Nestjs
- Host: GitHub
- URL: https://github.com/montycoder0701/nestjs-starter
- Owner: MontyCoder0701
- Created: 2025-07-28T04:20:26.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-07T00:44:22.000Z (11 months ago)
- Last Synced: 2025-08-07T02:34:29.549Z (11 months ago)
- Language: TypeScript
- Homepage:
- Size: 1.06 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Nest.js Starter
This is a simple starter repository for Nest.js projects.
Use it for hackathons or external projects as a boilerplate — clone and customize as needed.
## What's Included
### GitHub Actions
- **Release Please** – automated release management
- **Dependabot** – automatic dependency updates
- **Dependabot Validation** - automatic build check for dependabot PRs
- **CI** – basic continuous integration for build, tests, lint checks
### Database
- **MySQL**
- [**TypeORM**](https://typeorm.io)
## Notice
If you're using Dependabot, ensure the following setting is enabled:
> **Settings → Actions → General → Allow GitHub Actions to create and approve pull requests**
Add `.env.development` and `.env.production` to root directory to run. Fill in appropriate values for each.
```md
DATABASE_HOST=
DATABASE_PORT=
DATABASE_USERNAME=
DATABASE_PASSWORD=
DATABASE_NAME=
```