File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -142,17 +142,23 @@ https://www.figma.com/file/mRTYOtFjg3L8ozmjEEhHLh/Vue-Fes-Japan-2024
142
142
+
143
143
├─ src
144
144
│ ├─ after-purchase
145
- | ├- after-purchase.module.ts # 購入後の処理で使用が予定されている依存関係を置く
145
+ | ├- after-purchase.module.ts # 購入後に自動反映される予定のユーザーを対象として、使用が予定されている依存関係を置く
146
146
| └- after-purchase.service.ts
147
147
│ ├─ env
148
- | ├- env.module.ts # 環境変数を読み込む基盤を置く
148
+ | ├- env.module.ts # 環境変数を読み込む基盤を置く
149
149
| └- env.service.ts
150
150
│ ├─ peatix-order
151
- | ├- peatix-order.module.ts # Peatix へのログインを試み、購入情報を取得、Supabase へ整形したデータを挿入する基盤を置く
151
+ | ├- peatix-order.module.ts # Peatix へのログインを試み、購入情報を取得、Supabase へ整形したデータを挿入する基盤を置く
152
152
| └- peatix-order.service.ts
153
153
│ ├─ puppeteer
154
- | └- puppeteer.service.ts # スクレイピング処理の基盤を置く
155
- | └- cmd.ts # 処理の窓口を置く
154
+ | └- puppeteer.service.ts # スクレイピング処理の基盤を置く
155
+ │ ├─ sales-daily
156
+ | ├- sales-daily.module.ts # 各日の購入処理で使用が予定されている依存関係を置く
157
+ | └- sales-daily.service.ts
158
+ │ ├─ unactivated-check
159
+ | ├- unactivated-check.module.ts # 自動反映されなかったユーザーを対象として、処理で使用が予定されている依存関係を置く
160
+ | └- unactivated-check.service.ts
161
+ | └- cmd.ts # 処理の窓口を置く
156
162
├─ nest-cli.json
157
163
└- package.json
158
164
```
@@ -176,13 +182,13 @@ async function bootstrap() {
176
182
bootstrap ()
177
183
```
178
184
179
- ### NestJS とはなんぞや
185
+ ## NestJS とはなんぞや
180
186
181
187
そもそも NestJS について、深く知りたいという方のためのセクションを設けました。
182
188
183
189
::: tip
184
190
185
- NestJS の構造からたいへん上手くまとまっているため、合わせてこちらをご一読いただくと良いように考えています 。
191
+ NestJS の構造からたいへん上手くまとまっており、合わせてこちらをご一読いただけますと 。
186
192
187
193
[ NestJS の基礎概念の図解と要約] ( https://zenn.dev/morinokami/articles/nestjs-overview )
188
194
You can’t perform that action at this time.
0 commit comments