[PR #1] [MERGED] Feat/yaml #1

Closed
opened 2026-02-27 10:23:39 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mimamch/backuper/pull/1
Author: @mimamch
Created: 1/7/2026
Status: Merged
Merged: 1/7/2026
Merged by: @mimamch

Base: mainHead: feat/yaml


📝 Commits (4)

  • 29a4216 feat(yaml): migrate from prisma to yaml config
  • 11d15b1 feat(postgresql): implement pg_dump and zip functionality for PostgreSQL backups
  • 7edb60b feat(postgresql): update dump file naming and format for PostgreSQL backups
  • 6a15270 feat(docker): add Docker CI workflow and Dockerfile for application containerization

📊 Changes

28 files changed (+510 additions, -257 deletions)

View changed files

.github/workflows/docker-image.yml (+50 -0)
📝 apps/backuper/.gitignore (+3 -1)
apps/backuper/Dockerfile (+11 -0)
apps/backuper/config.example.yaml (+19 -0)
📝 apps/backuper/package.json (+3 -2)
📝 apps/backuper/pnpm-lock.yaml (+36 -66)
apps/backuper/prisma/migrations/20241122014241_init/migration.sql (+0 -37)
apps/backuper/prisma/migrations/20241125043806_add_dir_handler_databases/migration.sql (+0 -2)
apps/backuper/prisma/migrations/migration_lock.toml (+0 -3)
apps/backuper/prisma/schema.prisma (+0 -58)
apps/backuper/src/.dockerignore (+6 -0)
📝 apps/backuper/src/archiver/zip.ts (+32 -0)
apps/backuper/src/audit/index.ts (+81 -0)
📝 apps/backuper/src/backuper.cmd.ts (+16 -8)
📝 apps/backuper/src/backuper.test.ts (+4 -4)
📝 apps/backuper/src/backuper.ts (+19 -55)
📝 apps/backuper/src/handler/dir.ts (+7 -3)
📝 apps/backuper/src/handler/index.ts (+15 -1)
apps/backuper/src/handler/postgresql.ts (+81 -0)
📝 apps/backuper/src/index.ts (+18 -4)

...and 8 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mimamch/backuper/pull/1 **Author:** [@mimamch](https://github.com/mimamch) **Created:** 1/7/2026 **Status:** ✅ Merged **Merged:** 1/7/2026 **Merged by:** [@mimamch](https://github.com/mimamch) **Base:** `main` ← **Head:** `feat/yaml` --- ### 📝 Commits (4) - [`29a4216`](https://github.com/mimamch/backuper/commit/29a42167ff62fcce83da1180a26da4f4a2163fb6) feat(yaml): migrate from prisma to yaml config - [`11d15b1`](https://github.com/mimamch/backuper/commit/11d15b1a0992b874c7f0fb13b8605be6e5926105) feat(postgresql): implement pg_dump and zip functionality for PostgreSQL backups - [`7edb60b`](https://github.com/mimamch/backuper/commit/7edb60b0f875c5720387a016fb153765ba10b251) feat(postgresql): update dump file naming and format for PostgreSQL backups - [`6a15270`](https://github.com/mimamch/backuper/commit/6a152706794065a67ae7bdce708730a41792fe85) feat(docker): add Docker CI workflow and Dockerfile for application containerization ### 📊 Changes **28 files changed** (+510 additions, -257 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/docker-image.yml` (+50 -0) 📝 `apps/backuper/.gitignore` (+3 -1) ➕ `apps/backuper/Dockerfile` (+11 -0) ➕ `apps/backuper/config.example.yaml` (+19 -0) 📝 `apps/backuper/package.json` (+3 -2) 📝 `apps/backuper/pnpm-lock.yaml` (+36 -66) ➖ `apps/backuper/prisma/migrations/20241122014241_init/migration.sql` (+0 -37) ➖ `apps/backuper/prisma/migrations/20241125043806_add_dir_handler_databases/migration.sql` (+0 -2) ➖ `apps/backuper/prisma/migrations/migration_lock.toml` (+0 -3) ➖ `apps/backuper/prisma/schema.prisma` (+0 -58) ➕ `apps/backuper/src/.dockerignore` (+6 -0) 📝 `apps/backuper/src/archiver/zip.ts` (+32 -0) ➕ `apps/backuper/src/audit/index.ts` (+81 -0) 📝 `apps/backuper/src/backuper.cmd.ts` (+16 -8) 📝 `apps/backuper/src/backuper.test.ts` (+4 -4) 📝 `apps/backuper/src/backuper.ts` (+19 -55) 📝 `apps/backuper/src/handler/dir.ts` (+7 -3) 📝 `apps/backuper/src/handler/index.ts` (+15 -1) ➕ `apps/backuper/src/handler/postgresql.ts` (+81 -0) 📝 `apps/backuper/src/index.ts` (+18 -4) _...and 8 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 10:23:39 +03:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/backuper-mimamch#1
No description provided.