Skip to content

Commit

Permalink
๐Ÿฉน fix module resolution (#68)
Browse files Browse the repository at this point in the history
์ด๊ฑธ๋กœ๋„ ์ถฉ๋ถ„ํžˆ ๋ฆญ ์—†์ด ๋ฒ„ํ…จ์ ธ์„œ ์ด๊ฑธ๋กœ ๊ฐ‘๋‹ˆ๋‹ค
  • Loading branch information
woohm402 authored Jun 22, 2024
1 parent 5a45720 commit 66eda6c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ RUN echo "SLACK_WATCHER_CHANNEL_ID=${SLACK_WATCHER_CHANNEL_ID}" >> .env.local
RUN echo "DEPLOY_WATCHER_CHANNEL_ID=${DEPLOY_WATCHER_CHANNEL_ID}" >> .env.local
RUN echo "OPENAI_API_KEY=${OPENAI_API_KEY}" >> .env.local
RUN yarn install
RUN yarn build:server
CMD ["yarn", "start:server"]

EXPOSE 3000
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ OPENAI_API_KEY=sk-...
์„œ๋ฒ„๋ฅผ ๋„์šฐ๋ ค๋ฉด ์•„๋ž˜์™€ ๊ฐ™์ด ์ˆ˜ํ–‰ํ•ด์ฃผ์„ธ์š”.

```bash
yarn dev:server
yarn start:server
```

weekly dashboard ์ „์†ก์„ ํ…Œ์ŠคํŠธํ•˜๋ ค๋ฉด ์•„๋ž˜์™€ ๊ฐ™์ด ์ˆ˜ํ–‰ํ•ด์ฃผ์„ธ์š”.
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@
"type": "module",
"private": false,
"scripts": {
"build:server": "tsc -p .",
"start:server": "node dist/src/server.js",
"dev:server": "tsx src/server.ts",
"start:server": "tsx src/server.ts",
"deploy:server": "scripts/deploy.sh",
"send:weekly-dashboard": "tsx src/weekly-dashboard.ts",
"test": "vitest --run",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"rootDir": ".",
"strict": true,
"moduleResolution": "Bundler",
"allowArbitraryExtensions": true,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["vitest/globals"]
Expand Down

0 comments on commit 66eda6c

Please sign in to comment.