Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: env & DB settings #3

Merged
merged 2 commits into from
Jun 28, 2022
Merged

feat: env & DB settings #3

merged 2 commits into from
Jun 28, 2022

Conversation

kweonminsung
Copy link
Collaborator

No description provided.

@kweonminsung kweonminsung added the backend Backend job label Jun 28, 2022
@@ -3,6 +3,6 @@ import { Injectable } from "@nestjs/common";
@Injectable()
export class AppService {
getHello(): string {
return "Hello World!";
return "Hello World1!";
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ㅋㅋㅋㅋㅋㅋ

Comment on lines +3 to +16
@Entity()
export class User {
@PrimaryGeneratedColumn()
id: number;

@Column({ type: "varchar", length: "255", unique: true, nullable: false })
username: string;

@Column({ type: "varchar", length: "255", nullable: false })
password: string;

@Column({ type: "varchar", length: "255" })
imageUrl: string;
}
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

email은 따로 없어도 되는거야?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

email 추가했습니다!

@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

prettier 설정 중에 singleQuote: false 옵션이 적용이 안된거같은데 혹시 에디터 상에서 formatOnSave 옵션 사용 안하고 있으면 커밋하기 전에 lint한번 돌려주세여

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

넵 바로 적용해둘게요

@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

여기두

@@ -0,0 +1,4 @@
import { Injectable } from '@nestjs/common';
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

요기두

@Kangdyu
Copy link
Owner

Kangdyu commented Jun 28, 2022

다음 PR에 반영 예정

@Kangdyu Kangdyu merged commit 7e384c5 into develop Jun 28, 2022
@Kangdyu Kangdyu deleted the feature/db-setup branch June 28, 2022 06:03
@Kangdyu Kangdyu changed the title feat(backend): env & DB settings feat: env & DB settings Jun 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backend Backend job
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants