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

🩹 fix module resolution #68

Merged
merged 1 commit into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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
Loading