├── .gitignore ├── Dockerfile ├── README.md ├── package.json ├── src ├── backup.ts ├── env.ts ├── index.ts └── util.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | 4 | # Webstorm 5 | .idea 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railwayapp-templates/postgres-s3-backups/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railwayapp-templates/postgres-s3-backups/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railwayapp-templates/postgres-s3-backups/HEAD/package.json -------------------------------------------------------------------------------- /src/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railwayapp-templates/postgres-s3-backups/HEAD/src/backup.ts -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railwayapp-templates/postgres-s3-backups/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railwayapp-templates/postgres-s3-backups/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railwayapp-templates/postgres-s3-backups/HEAD/src/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railwayapp-templates/postgres-s3-backups/HEAD/tsconfig.json --------------------------------------------------------------------------------