Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e72535b
feat: 로그인 페이지 구현 및 회원가입 페이지 수정
hobaksweetpotato May 20, 2025
dc3fa06
이 release 0.1 브렌치에 푸시를 할거에요
Siul49 May 26, 2025
30f13dc
이 release 0.1 브렌치에 푸시를 할거에요
Siul49 May 26, 2025
e6baca6
release 0.1 입니다 여기서 브렌치 파서 작업해주세요
Siul49 May 26, 2025
ba15f0a
Merge branch 'fillincode' into main-novcsxml
ArgX2 May 26, 2025
9c18892
Merge pull request #9 from Siul49/main-novcsxml
ArgX2 May 26, 2025
2f93ffa
상품페이지 복구 완료
ArgX2 May 26, 2025
66296ad
상품페이지 복구 완료
ArgX2 May 26, 2025
22df2ae
ddip 폴더 삭제
Siul49 May 26, 2025
389ca70
구조 변경 및 회원가입 페이지 수정 중
ArgX2 May 27, 2025
c78a036
글쓰기, 채팅 버튼 추가
ArgX2 May 28, 2025
20d22b1
style; 버튼 커서 스타일 통일
dokkk0dahee May 28, 2025
8026935
feat; 채팅 기능 구현 (일방향)
dokkk0dahee May 28, 2025
2f002da
style; 아이콘 추가
dokkk0dahee May 28, 2025
d2adf90
mongodb 연결 후 카테고리, 상품페이지 연결 완료
ArgX2 May 29, 2025
21d8b97
카테고리 이름까지 뜨게
ArgX2 May 29, 2025
99f927f
feat; 채팅 기능 구현 (쌍방향, 이름, 시간)
dokkk0dahee May 29, 2025
16e929c
[수정] 채팅목록 파일추가, 컴포넌트명 변경
dokkk0dahee May 29, 2025
eae7ca2
feat: 채팅 목록 기능 구현
dokkk0dahee May 29, 2025
22ff373
style: 스크롤러 커스텀
dokkk0dahee May 29, 2025
67d5358
게시글 틀 완성
ArgX2 Jun 6, 2025
425682d
post추가
ArgX2 Jun 6, 2025
fd63085
Merge branch 'release-0.2' into mongodb
ArgX2 Jun 6, 2025
fa41e4f
Merge pull request #12 from Siul49/mongodb
ArgX2 Jun 6, 2025
555b69a
Merge branch 'release-0.2' into chatwritebutton-chatting
ArgX2 Jun 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
6 changes: 6 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# DDIP

## 현재 구현기능
### FE
- 로그인
- 회원가입
- 로그아웃


### BE
- 로그인
- 회원가입
- 로그아웃

11 changes: 0 additions & 11 deletions ddip/jsconfig.json

This file was deleted.

Empty file.
28 changes: 0 additions & 28 deletions ddip/src/app/home/category.js

This file was deleted.

15 changes: 0 additions & 15 deletions ddip/src/app/home/item.js

This file was deleted.

32 changes: 0 additions & 32 deletions ddip/src/app/home/products.js

This file was deleted.

67 changes: 0 additions & 67 deletions ddip/src/app/page.js

This file was deleted.

Empty file removed ddip/src/app/pages/logout.js
Empty file.
Empty file removed ddip/src/app/pages/mypage.js
Empty file.
20 changes: 0 additions & 20 deletions ddip/src/app/signup/signpage.js

This file was deleted.

11 changes: 0 additions & 11 deletions ddip/src/constants/categoryDB.js

This file was deleted.

File renamed without changes.
12 changes: 12 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"baseUrl": "src",
"paths": {
"@/*": ["*"],
"@home/*": ["app/feature/home/*"],
"@constants/*": ["constants/*"],
"@auth/*": ["app/feature/auth/*"],
"@components/*": ["app/components/*"]
}
}
}
41 changes: 41 additions & 0 deletions next-container/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
2 changes: 1 addition & 1 deletion ddip/README.md → next-container/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bun dev

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/signpage.js`. The page auto-updates as you edit the file.
You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.

Expand Down
14 changes: 14 additions & 0 deletions next-container/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

const compat = new FlatCompat({
baseDirectory: __dirname,
});

const eslintConfig = [...compat.extends("next/core-web-vitals")];

export default eslintConfig;
7 changes: 7 additions & 0 deletions next-container/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
}
}
4 changes: 4 additions & 0 deletions next-container/next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};

export default nextConfig;
Loading