el.xwx.moe/src/config.js

12 lines
596 B
JavaScript
Raw Normal View History

2022-06-08 13:28:44 -05:00
// Note: the formatting are really sensitive so for example DO NOT end
// the "STORAGE_LOCATION" path with an extra slash "/" (i.e. "/home/")
2022-06-01 16:18:21 -05:00
module.exports = {
"API": {
2022-06-08 13:28:44 -05:00
"ADDRESS": "http://192.168.1.7", // IP address of the computer which LinkWarden is running
"PORT": 5000, // The api port
"MONGODB_URI": "mongodb://localhost:27017", // MongoDB link
"DB_NAME": "sample_db", // MongoDB database name
"COLLECTION_NAME": "list", // MongoDB collection name
"STORAGE_LOCATION": "/home/danny/Documents" // The path to store the archived data
2022-06-01 16:18:21 -05:00
}
}