From 55d51406305a9fd610ee2495404d9fbf6052b14f Mon Sep 17 00:00:00 2001 From: KOSASIH Date: Wed, 20 Nov 2024 22:51:57 +0700 Subject: [PATCH] Update development.json --- config/development.json | 41 +++++++++++++++++++++++++---------------- 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/config/development.json b/config/development.json index c22dc7b72..26c244e9f 100644 --- a/config/development.json +++ b/config/development.json @@ -1,30 +1,39 @@ { "app": { - "name": "MyApp", + "name": "Pi Nexus Autonomous Banking Network", "version": "1.0.0", - "debug": true + "debug": true, + "secret_key": "your_secret_key_here" + }, + "server": { + "host": "127.0.0.1", + "port": 5000 }, "database": { - "host": "localhost", - "port": 5432, - "user": "dev_user", - "password": "dev_password", - "database": "myapp_dev" + "type": "sqlite", + "name": "pinnexus.db", + "uri": "sqlite:///pinnexus.db", + "echo": true }, - "api": { - "base_url": "http://localhost:8000/api", - "timeout": 30 + "jwt": { + "secret_key": "your_jwt_secret_key_here", + "algorithm": "HS256", + "access_token_expires": 3600 }, "logging": { "level": "DEBUG", "file": "logs/development.log" }, - "two_factor_auth": { - "issuer": "MyApp", - "secret_length": 16 + "blockchain": { + "difficulty": 2, + "mining_reward": 50 + }, + "identity_management": { + "verification_method": "KYC", + "biometric_enabled": false }, - "features": { - "enable_feature_x": true, - "enable_feature_y": false + "notifications": { + "enabled": true, + "service_url": "http://localhost:8000/notifications" } }