Big Update Added Services and Admin

This commit is contained in:
2025-06-22 11:26:57 -07:00
parent 8f462953b7
commit caca552cae
32 changed files with 683 additions and 46 deletions

View File

@@ -1,2 +1,2 @@
MYSQL_ROOT_PASSWORD: random
MYSQL_PASSWORD: random
MYSQL_ROOT_PASSWORD=random
MYSQL_PASSWORD=random

3
skeleton/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
data/
novaconium/vendor/
novaconium/logs/

View File

@@ -7,5 +7,8 @@ $config = [
'pass' => '',
'port' => 3306
],
'base_url' => 'http://localhost:8000'
'base_url' => 'http://localhost:8000',
'secure_key' => '', //64 alphanumeric characters
'logfile' => '/logs/novaconium.log',
'loglevel' => 'ERROR' // 'DEBUG', 'INFO', 'WARNING', 'ERROR', 'NONE'
];

View File

@@ -30,4 +30,18 @@ code {
h2 {
margin-top: 40px;
}
div.error, div#debug {
border: 1px solid red;
padding: 30px;
background-color: pink;
color: darkred;
margin: 0 auto;
width: 900px;
}
div#debug {
margin-top: 100px;
margin-bottom: 100px;
}