Skip to content

Commit ada42ae

Browse files
yellowjang장아영KingNono1030
authored
[#56] 로그인 기능 구현 (#107)
* [#56] 📦 axios install * [#56] 📦 fix node package * [#56] ✨ add 'useAuthStore' * [#56] ✨ add signIn query (use 'axios') * [#56] ✨ login page (for test) * [#56] ✨ add auth Type * [#56] ✨ root Page for test (for logout) * [#56] 📦 typescript package fix * [#56] 🐛 fix for debugging * [#56] 🐛 add 'console log' for checking 'response.result' * [#56] 🔧 add base url in env file * [#56] ♻️ update auth related types * [#56] 🚚 rename auth api request methods file + useAuthStore * [#56] ♻️ rewrite module import paths along to the names changed * [#56] 🚚 rename module import path * [#56] ♻️ rename page name + change how page component is declared with a light type correction * [#56] ♻️ sign-in api request refactor * [#56] 🌱 pull commits * [#56] ✨ create sign-in proxy server * [#56] ✨ create sign-out proxy server * [#56] 🗑️ remove duplicated files * [#56] 💄 format all files * [#56] 🗑️ remove unused variables and import lines * [#56] ♻️ turn any type into unknown --------- Co-authored-by: 장아영 <[email protected]> Co-authored-by: KingNono1030 <[email protected]>
1 parent d544f2c commit ada42ae

File tree

15 files changed

+6172
-5393
lines changed

15 files changed

+6172
-5393
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEXT_PUBLIC_API_BASE_URL=http://43.202.50.174:8080/

.github/workflows/git-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
user-email: ${{ secrets.OFFICIAL_ACCOUNT_EMAIL }}
3333
commit-message: ${{ github.event.head_commit.message || 'Auto-deployed from GitHub Actions' }}
3434
target-branch: dev
35-
push-args: --force # 강제 푸시 옵션 추가
35+
push-args: --force # 강제 푸시 옵션 추가
3636

3737
- name: Test Get Variable Exported by Push-to-Another-Repository
3838
run: echo $DESTINATION_CLONED_DIRECTORY

package-lock.json

Lines changed: 0 additions & 3308 deletions
This file was deleted.

package.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"dependencies": {
33
"@tanstack/react-query": "^5.59.19",
4+
"axios": "^1.7.7",
45
"clsx": "^2.1.1",
56
"next": "^15.0.2",
67
"react": "^18.3.1",
@@ -55,7 +56,8 @@
5556
"storybook": "^8.4.2",
5657
"tailwindcss": "^3.4.14",
5758
"ts-jest": "^29.2.5",
58-
"ts-node": "^10.9.2"
59+
"ts-node": "^10.9.2",
60+
"typescript": "^5.6.3"
5961
},
6062
"scripts": {
6163
"dev": "next dev",
@@ -76,6 +78,11 @@
7678
"path": "./commit-config.js"
7779
}
7880
},
81+
"pnpm": {
82+
"overrides": {
83+
"@types/node": "22.9.0"
84+
}
85+
},
7986
"name": "",
8087
"version": ""
8188
}

0 commit comments

Comments
 (0)