Skip to content

system.config.ts

taisan edited this page Apr 11, 2024 · 1 revision

system.config.ts

このファイルはメインの設定ファイルです。 これはすべての保存モードに例外無く実装されています。

export default {
    // ここに設定したpwをメール欄に'#パスワード'のように入力すると'★name'が表示されます
    "caps": {
        "admin": {
            "name": "Admin",
            "pw": "Admin",
            "fullname": "Administrator",
            "description": "Administrator"
        }
    },
    // 権限管理。主に管理画面操作用です
    "user": {
        "admin": {
            "name": "admin",
            "password": "admin",
            "fullname": "Administrator",
            "admin": true
        }
    },
    // メインの設定です
    "preference": {
        "site": {
            "InstDIR": "/test", // ex:OO.com/test/read.cgi
            "KejibanConfigDIR": "..", // 現在意味ない
            "name": "Och" // 現在意味ない
        },
        "limit": {
            "MaxSubject": 3, // 現在意味ない
            "MaxRes": 1000, // 現在意味ない
            "MaxAnchor": 10, // 現在意味ない
            "MaxErrorLog": 500, // 現在意味ない
            "HostLog": 500, // 現在意味ない
            "MaxUserWriteFailureLog": 500 // 現在意味ない
        },
        "other": {
            "header": {
                "text": "<small>■<b>レス検索</b>■</small>", // 現在意味ない
                "link": "../test/search.cgi" // 現在意味ない
            },
            "URL": {
                "GazoToIMG": false, // 現在意味ない
                "AuthLink": true, // 現在意味ない
                "CookieDateExp": 30 // 現在意味ない
            },
            'saveformat': "file" // 保存方式です。DBを使用する場合はDBと入力してください
        },
        "display": {
            "PRtext": "Och~おーちゃんねる~", // 現在意味ない
            "PRlink": "https://github.com/taisan11/Och", // 現在意味ない
            "kokuti": {
                "inIndex": true, // 現在意味ない
                "inOther": false // 現在意味ない
            }
        },
        "kisei": {
            "2jyuu": true, // 現在意味ない
            "ShortPostRegulationSec": 0, // 現在意味ない
            "sinTorip": true // 現在意味ない
        }
    }
}
Clone this wiki locally