diff --git a/.gitignore b/.gitignore index 8b67396080ff0348a4e4f8ea065171ff9edd857b..7c7c127b11bb9583e93d7ff5acf7eae69bb58d10 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -pass/config/default.json +pass/config/development.json diff --git a/pass/config/default.json b/pass/config/default.json new file mode 100644 index 0000000000000000000000000000000000000000..9667aabc386c924ab36e054ebd959b27f114562a --- /dev/null +++ b/pass/config/default.json @@ -0,0 +1,25 @@ +{ + "redis": { + "host": "redis" + }, + "storage": { + "data_path": "/data" + }, + "crypto": { + "hmac_integrity_seed": "<insert_secret_for_hmac_seed>", + "private_key": { + "seed": "<insert_secret_seed>", + "bit_length": 2048, + "date_format": "MM/YYYY" + } + }, + "payments": { + "paypal": { + "development": { + "base": "https://api-m.sandbox.paypal.com", + "secret": "<INSERT_PAYPAL_APPLICATION_SECRET>", + "client_id": "<INSERT_PAYPAL_CLIENT_ID>" + } + } + } +} \ No newline at end of file