dotenvを廃止しconfig.tsへ・天気の分割数をconfigで変更できるように・デバッグ用のサンプルログを.gitignoreに追加・地震情報解析の修正

This commit is contained in:
2025-07-01 16:59:45 +09:00
parent 007efd85a8
commit 7e3c4840d3
11 changed files with 147 additions and 292 deletions
+17
View File
@@ -0,0 +1,17 @@
interface earthquakeTypes {
reconnectTimes: number;
websocketUrl: string;
areasCsvUrl: string;
}
interface weatherTypes {
splitCount: number;
}
export interface configTypes {
earthquake: earthquakeTypes;
weather: weatherTypes;
apiToken: string;
uwuzuServer: string;
}