Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F995890
config.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
895 B
Referenced Files
None
Subscribers
None
config.ts
View Options
import
type
{
LoggerLevel
}
from
"./logger.js"
;
export
type
Environment
=
"dev"
|
"production"
;
type
Config
=
{
core
:
{
environment
:
Environment
;
};
logger
:
{
level
:
LoggerLevel
;
};
"www-server"
:
{
port
:
number
;
"api-base"
:
string
;
"session-cookie-name"
:
string
;
"max-payload-bytes"
:
number
;
};
datastore_mongo
:
{
host
:
string
;
port
:
number
;
db_name
:
string
;
username
:
string
;
password
:
string
;
authSource
:
string
;
};
roles
:
string
[];
password_hash
:
{
iterations
:
number
;
key_length
:
number
;
salt_length
:
number
;
};
image_formats
:
{};
accout_creation_success_path
:
false
|
string
;
email
:
{
from_address
:
string
;
from_name
:
string
;
};
upload_path
:
string
;
app
:
{
version
:
string
;
};
};
export
default
Config
;
type
RecursivePartial
<
T
>
=
{
[
P
in
keyof
T
]
?:
RecursivePartial
<
T
[
P
]
>
;
};
export
type
PartialConfig
=
RecursivePartial
<
Config
>
;
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Tue, Dec 24, 00:38 (1 d, 2 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
556051
Default Alt Text
config.ts (895 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment