Code owners
Assign users and groups as approvers for specific file changes. Learn more.
secret-webconfig.json 977 B
{
"prod":{
"JWT_SECRET_KEY": "super-secret",
"postgre": {
"HOST" : "localhost",
"PORT" : 5432,
"USER" : "postgres",
"PASSWORD" : "password",
"DATABASE" : "teknik8"
}
},
"dev":{
"JWT_SECRET_KEY": "super-secret",
"postgre": {
"HOST" : "localhost",
"PORT" : 5432,
"USER" : "postgres",
"PASSWORD" : "password",
"DATABASE" : "teknik8-dev"
},
"lite":{
"SQLALCHEMY_DATABASE_URI":"sqlite:///database.db"
}
},
"test":{
"JWT_SECRET_KEY": "super-secret",
"postgre": {
"HOST" : "localhost",
"PORT" : 5432,
"USER" : "postgres",
"PASSWORD" : "password",
"DATABASE" : "teknik8-test"
},
"lite":{
"SQLALCHEMY_DATABASE_URI":"sqlite:///test.db"
}
}
}