j3ko / nestjs-boilerplate

Opinionated NestJS boilerplate template
MIT License
0 stars 0 forks source link

update readme to something more appropriate #1

Closed j3ko closed 5 months ago

j3ko commented 1 year ago

Description

Nest framework TypeScript starter repository.

Installation

$ yarn install

Running the app

# development
$ yarn run start

# watch mode
$ yarn run start:dev

# production mode
$ yarn run start:prod

Test

# unit tests
$ yarn run test

# e2e tests
$ yarn run test:e2e

# test coverage
$ yarn run test:cov

Support

Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.

Stay in touch

License

Nest is MIT licensed.

j3ko commented 1 year ago

https://stackoverflow.com/a/56577320/314211

On the other repositories you have to add this template repository as a remote.

git remote add template [URL of the template repo]

Then run git fetch to update the changes

git fetch --all

Then is possible to merge another branch from the new remote to your current one.

git merge template/[branch to merge] --allow-unrelated-histories