├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── admin └── src │ ├── containers │ ├── App │ │ └── index.js │ ├── BackupsList │ │ └── index.js │ ├── HomePage │ │ └── index.js │ └── Initializer │ │ └── index.js │ ├── index.js │ ├── lifecycles.js │ ├── pluginId.js │ ├── translations │ ├── ar.json │ ├── cs.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── id.json │ ├── index.js │ ├── it.json │ ├── ko.json │ ├── ms.json │ ├── nl.json │ ├── pl.json │ ├── pt-BR.json │ ├── pt.json │ ├── ru.json │ ├── sk.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ ├── zh-Hans.json │ └── zh.json │ └── utils │ ├── callApi.js │ └── getTrad.js ├── assets └── docs │ ├── manual_backup.png │ └── permissions.png ├── config ├── functions │ └── bootstrap.js └── routes.json ├── controllers ├── backup-manager.js └── backup-restore.js ├── models ├── backup.js └── backup.settings.json ├── package.json └── services ├── backup-tools.js └── backup.js /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | *.iml 3 | node_modules 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/README.md -------------------------------------------------------------------------------- /admin/src/containers/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/containers/App/index.js -------------------------------------------------------------------------------- /admin/src/containers/BackupsList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/containers/BackupsList/index.js -------------------------------------------------------------------------------- /admin/src/containers/HomePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/containers/HomePage/index.js -------------------------------------------------------------------------------- /admin/src/containers/Initializer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/containers/Initializer/index.js -------------------------------------------------------------------------------- /admin/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/index.js -------------------------------------------------------------------------------- /admin/src/lifecycles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/lifecycles.js -------------------------------------------------------------------------------- /admin/src/pluginId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/pluginId.js -------------------------------------------------------------------------------- /admin/src/translations/ar.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/cs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/de.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /admin/src/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/translations/en.json -------------------------------------------------------------------------------- /admin/src/translations/es.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/fr.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/id.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/translations/index.js -------------------------------------------------------------------------------- /admin/src/translations/it.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/ko.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/ms.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/nl.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/pl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /admin/src/translations/pt-BR.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/pt.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/translations/ru.json -------------------------------------------------------------------------------- /admin/src/translations/sk.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/th.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/tr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /admin/src/translations/uk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /admin/src/translations/vi.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /admin/src/translations/zh-Hans.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /admin/src/translations/zh.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /admin/src/utils/callApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/utils/callApi.js -------------------------------------------------------------------------------- /admin/src/utils/getTrad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/admin/src/utils/getTrad.js -------------------------------------------------------------------------------- /assets/docs/manual_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/assets/docs/manual_backup.png -------------------------------------------------------------------------------- /assets/docs/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/assets/docs/permissions.png -------------------------------------------------------------------------------- /config/functions/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/config/functions/bootstrap.js -------------------------------------------------------------------------------- /config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/config/routes.json -------------------------------------------------------------------------------- /controllers/backup-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/controllers/backup-manager.js -------------------------------------------------------------------------------- /controllers/backup-restore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/controllers/backup-restore.js -------------------------------------------------------------------------------- /models/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/models/backup.js -------------------------------------------------------------------------------- /models/backup.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/models/backup.settings.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/package.json -------------------------------------------------------------------------------- /services/backup-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/services/backup-tools.js -------------------------------------------------------------------------------- /services/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8byr0/strapi-plugin-backup-restore/HEAD/services/backup.js --------------------------------------------------------------------------------