Added additional details about how to use the fat container, and how to manage / maintain it. Also includes some refactorings that shouldn't affect the functionality significantly.
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
|
|
const BACKUP_PATH = "/appsmith-stacks/data/backup"
|
|
|
|
const RESTORE_PATH = "/appsmith-stacks/data/restore"
|
|
|
|
const DUMP_FILE_NAME = "appsmith-data.archive"
|
|
|
|
module.exports = {
|
|
BACKUP_PATH,
|
|
RESTORE_PATH,
|
|
DUMP_FILE_NAME,
|
|
}
|