Skip to content

Commit

Permalink
Create development.json
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Nov 20, 2024
1 parent 6c0ecd7 commit 2aeaad3
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions config/development.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"app": {
"name": "MyApp",
"version": "1.0.0",
"debug": true
},
"database": {
"host": "localhost",
"port": 5432,
"user": "dev_user",
"password": "dev_password",
"database": "myapp_dev"
},
"api": {
"base_url": "http://localhost:8000/api",
"timeout": 30
},
"logging": {
"level": "DEBUG",
"file": "logs/development.log"
},
"two_factor_auth": {
"issuer": "MyApp",
"secret_length": 16
},
"features": {
"enable_feature_x": true,
"enable_feature_y": false
}
}

0 comments on commit 2aeaad3

Please sign in to comment.