├── .dockerignore ├── .gitignore ├── .gitmodules ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── data └── .gitignore ├── hooks └── post_checkout.sh ├── index.js ├── package.json ├── scripts ├── _load.js ├── calculateDomainSize.js ├── deleteDomain.js ├── deleteFiles.js └── deleteModofiedExpired.js └── utils ├── log.js ├── prototypes.js └── utils.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /hooks/post_checkout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/hooks/post_checkout.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/package.json -------------------------------------------------------------------------------- /scripts/_load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/scripts/_load.js -------------------------------------------------------------------------------- /scripts/calculateDomainSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/scripts/calculateDomainSize.js -------------------------------------------------------------------------------- /scripts/deleteDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/scripts/deleteDomain.js -------------------------------------------------------------------------------- /scripts/deleteFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/scripts/deleteFiles.js -------------------------------------------------------------------------------- /scripts/deleteModofiedExpired.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/scripts/deleteModofiedExpired.js -------------------------------------------------------------------------------- /utils/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/utils/log.js -------------------------------------------------------------------------------- /utils/prototypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/utils/prototypes.js -------------------------------------------------------------------------------- /utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/granny-server-cron/HEAD/utils/utils.js --------------------------------------------------------------------------------