Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ PyBackUpper.code-workspace
.test-logs
.test-target
.test-source
.test-appconfig
source
target
logs
secrets
test_docker_compose.yaml
test_docker_compose.yaml
src/log_dev.conf
src/__pycache__
13 changes: 9 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,10 @@ dmypy.json

.vscode
*.code-workspace
.test-source
.test-target
.test-logs
test-source/*
test-target/*
test-logs/*
test-appconfig/*
test.cmd
test_docker_compose.yaml
# ignore all files in source directory
Expand All @@ -144,4 +145,8 @@ target/*
# ignore all files in logs directory
logs/*

secrets/*
secrets/*

*.png.bkp
*.png.dtmp
.sync-exclude.lst
Binary file added PyBackUpper Schema.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[project]
name = "pybackupper"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"APScheduler == 3.10.1",
"boto3 == 1.26.158",
"botocore == 1.29.165",
"Flask == 2.3.2",
"flask_wtf == 1.2.1",
"psutil == 5.9.6",
"Requests == 2.32.3",
"tzlocal == 5.2",
]
Loading