Replaced network and tag files with SQLite database.

This commit is contained in:
2019-03-25 03:57:33 +01:00
parent f44c5083ff
commit 4d7f323e86
22 changed files with 1948 additions and 654 deletions

9
knexfile.js Normal file
View File

@@ -0,0 +1,9 @@
// Update with your config settings.
module.exports = {
client: 'sqlite3',
connection: {
filename: './db.sqlite',
},
useNullAsDefault: true,
};