This commit is contained in:
2025-10-30 23:05:24 +08:00
commit 480f224ab6
30 changed files with 11271 additions and 0 deletions

10
config/database.js Normal file
View File

@@ -0,0 +1,10 @@
const path = require('path');
const dbConfig = {
development: {
dialect: 'sqlite',
storage: path.join(__dirname, '../proxies.db')
}
};
module.exports = dbConfig;