environment and dependency cleanup

This commit is contained in:
daniel-c-harvey
2026-06-03 12:36:48 -04:00
parent 5b4c7c1a18
commit 252eb0bd44
5 changed files with 6 additions and 31 deletions
+1
View File
@@ -301,6 +301,7 @@ __pycache__/
**/appsettings.Development.json
# local sqlite files
**/database/*
**/deepdrft.db*
# NetBlocks symlink for tool-assisted library code search
-5
View File
@@ -1,5 +0,0 @@
{
"DeepDrftContent": {
"ApiKey": "your-secret-api-key-here"
}
}
-19
View File
@@ -1,19 +0,0 @@
{
"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"
}
}
}
-6
View File
@@ -1,6 +0,0 @@
{
"ConnectionStrings": {
"DefaultConnection": "Host=localhost;Port=5433;Database=deepdrft;Username=postgres;Password=your-password-here",
"Auth": "Host=localhost;Port=5433;Database=deepdrft_auth;Username=postgres;Password=your-password-here"
}
}
+5 -1
View File
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
@@ -6,4 +6,8 @@
<add key="AuthBlocks-local" value="C:\Development\AuthBlocks\nupkgs\" />
<add key="BlazorBlocks-local" value="C:\Development\BlazorBlocks\nupkgs\" />
</packageSources>
<disabledPackageSources>
<add key="AuthBlocks-local" value="true" />
<add key="BlazorBlocks-local" value="true" />
</disabledPackageSources>
</configuration>