Skip to content

Commit

Permalink
fix: remove unuse sql
Browse files Browse the repository at this point in the history
  • Loading branch information
fengkx committed Nov 6, 2020
1 parent faca7cc commit 67bb0a3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 28 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Another Telegram RSSBot in Node.js",
"main": "dist/source",
"scripts": {
"build": "del-cli dist && tsc && cpy source/database/sql dist/source/database/sql && cpy source/template dist/source/template && cpy i18n dist/i18n",
"build": "del-cli dist && tsc && cpy source/template dist/source/template && cpy i18n dist/i18n",
"start": "cross-env NODE_PRODUTION=true node dist/source/index.js",
"start-withsnapshot": "cross-env NODE_PRODUTION=true node --heapsnapshot-signal=SIGUSR2 dist/source/index.js",
"dev": "node dist/source/index",
Expand Down
26 changes: 0 additions & 26 deletions source/database/sql/create_tables.sql

This file was deleted.

2 changes: 1 addition & 1 deletion source/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ async function startFetchProcess(restartTime: number): Promise<void> {

startFetchProcess(0);

logger.info(`Database file is in ${db_path}`);
logger.info(`Database is located in ${db_path}`);
logger.info(`Using Default language is ${lang}`);
logger.info(`send the latest ${item_num} items for each feed`);
logger.info('NodeRSSBot is ready');

0 comments on commit 67bb0a3

Please sign in to comment.