Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F3010379
config.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
845 B
Referenced Files
None
Subscribers
None
config.ts
View Options
import
{
LoggerLevel
}
from
"./logger"
;
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
;
password
:
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
Wed, May 7, 19:41 (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
636320
Default Alt Text
config.ts (845 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment