diff --git a/DeepDrftCli/connections.example.json b/DeepDrftCli/connections.example.json new file mode 100644 index 0000000..3eb0308 --- /dev/null +++ b/DeepDrftCli/connections.example.json @@ -0,0 +1,6 @@ +{ + "CliSettings": { + "ConnectionString": "Host=localhost;Port=5433;Database=postgres;Username=postgres;Password=your-password-here", + "VaultPath": "C:/Development/DeepDrftHome/Database/Vaults" + } +} diff --git a/DeepDrftContent/apikey.example.json b/DeepDrftContent/apikey.example.json new file mode 100644 index 0000000..af8ef0b --- /dev/null +++ b/DeepDrftContent/apikey.example.json @@ -0,0 +1,5 @@ +{ + "ApiKeySettings": { + "ApiKey": "your-secret-api-key-here" + } +} diff --git a/DeepDrftContent/filedatabase.example.json b/DeepDrftContent/filedatabase.example.json new file mode 100644 index 0000000..5e60f5f --- /dev/null +++ b/DeepDrftContent/filedatabase.example.json @@ -0,0 +1,5 @@ +{ + "FileDatabaseSettings": { + "VaultPath": "C:/Development/DeepDrftHome/Database/Vaults" + } +} diff --git a/DeepDrftWeb/apikey.example.json b/DeepDrftWeb/apikey.example.json new file mode 100644 index 0000000..9300155 --- /dev/null +++ b/DeepDrftWeb/apikey.example.json @@ -0,0 +1,5 @@ +{ + "DeepDrftContent": { + "ApiKey": "your-secret-api-key-here" + } +} diff --git a/DeepDrftWeb/authblocks.example.json b/DeepDrftWeb/authblocks.example.json new file mode 100644 index 0000000..1cf53de --- /dev/null +++ b/DeepDrftWeb/authblocks.example.json @@ -0,0 +1,19 @@ +{ + "AuthBlocks": { + "SupportEmail": "admin@deepdrft.com", + "Jwt": { + "Secret": "your-jwt-secret-here", + "Issuer": "https://deepdrft.com", + "Audience": "deepdrft-users" + }, + "Email": { + "Host": "smtp.your-provider.com", + "Token": "your-email-token-here" + }, + "Admin": { + "UserName": "admin", + "Email": "admin@deepdrft.com", + "Password": "your-admin-password-here" + } + } +} diff --git a/DeepDrftWeb/connections.example.json b/DeepDrftWeb/connections.example.json new file mode 100644 index 0000000..8439f83 --- /dev/null +++ b/DeepDrftWeb/connections.example.json @@ -0,0 +1,6 @@ +{ + "ConnectionStrings": { + "DefaultConnection": "Host=localhost;Port=5433;Database=postgres;Username=postgres;Password=your-password-here", + "Auth": "Host=localhost;Port=5433;Database=postgres;Username=postgres;Password=your-password-here" + } +}