From ef7e5956edf4c983c52cd20cb131162069b3b564 Mon Sep 17 00:00:00 2001 From: Gentile G Date: Tue, 3 Oct 2023 13:12:01 +0200 Subject: [PATCH] Removing config file from repo --- .gitignore | 1 + config.example.py | 7 +++++++ config.py | 2 -- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 config.example.py delete mode 100644 config.py diff --git a/.gitignore b/.gitignore index faf9afd..748a094 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ __pycache__/ .idea/ +config.py \ No newline at end of file diff --git a/config.example.py b/config.example.py new file mode 100644 index 0000000..0db2f7e --- /dev/null +++ b/config.example.py @@ -0,0 +1,7 @@ +portainer_url = 'https://portainer.dorfsvald.net' +portainer_access_token = 'example_access_token' +portainer_compose_dir = '/absolute/path/to/portainer-data/compose' +git_repositories = [ + 'path/to/a/git/repository', + 'path/to/another/git/repo' +] diff --git a/config.py b/config.py deleted file mode 100644 index 4720396..0000000 --- a/config.py +++ /dev/null @@ -1,2 +0,0 @@ -access_token = 'example_access_token' -portainer_compose_dir = '/absolute/path/to/portainer-data/compose'