remove unused names
This commit is contained in:
parent
5446509b96
commit
c14d0a89a2
@ -8,8 +8,11 @@ echo "Where is your git repo? (eg git@github.com:dittonjs/NestStarterApp.git)"
|
||||
|
||||
read reponame
|
||||
|
||||
# replace the title of the README with new app name
|
||||
sed -i "s/USU CS4610 Nest Starter App/$appname/" README.md
|
||||
|
||||
git add .
|
||||
git commit -m "setup new project '$appname'"
|
||||
git remote rename origin upstream
|
||||
git remote add origin $reponame
|
||||
git branch -M main
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { Body, Controller, Get, HttpException, HttpStatus, Post, Res, UseGuards } from '@nestjs/common';
|
||||
import { Body, Controller, Get, HttpException, HttpStatus, Post, Res } from '@nestjs/common';
|
||||
import * as bcrypt from 'bcrypt';
|
||||
import { Response } from 'express';
|
||||
import { JwtBody } from 'server/decorators/jwt_body.decorator';
|
||||
|
@ -1,7 +1,6 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { InjectRepository } from '@nestjs/typeorm';
|
||||
import { In, Repository } from 'typeorm';
|
||||
import * as bcrypt from 'bcrypt';
|
||||
import { Role, RoleKey } from 'server/entities/role.entity';
|
||||
|
||||
@Injectable()
|
||||
|
Loading…
Reference in New Issue
Block a user