From ae91432560c158dce2193dbb97818d645bcf99c8 Mon Sep 17 00:00:00 2001 From: Ingo Pfennigstorf Date: Tue, 19 Jan 2021 11:10:18 +0100 Subject: [PATCH] Add config.dist as stub --- .gitignore | 1 + README.md | 5 ++++- config.php => config.dist.php | 0 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .gitignore rename config.php => config.dist.php (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4f4773f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +config.php diff --git a/README.md b/README.md index 62966a7..a355fe8 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,10 @@ Download the [latest version](https://github.com/stecklars/dynamic-dns-netcup-ap I'm always trying to keep the master branch stable. ### Configuration -Configuration is very simple: Just fill out `config.php` with the required values. The options are explained in there. +Configuration is very simple: +* Copy `config.dist.php` to `config.php` + * `cp config.dist.php config.php` +* Fill out `config.php` with the required values. The options are explained in there. ### How to use `php update.php` diff --git a/config.php b/config.dist.php similarity index 100% rename from config.php rename to config.dist.php