Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hikarisystems
/
README
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
README
/
lib
/
config.ts
Rick Knowles
added skeleton container
94d5fc0
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
179 Bytes
import
nconf
from
'nconf'
;
const
config = nconf
.
argv
()
.
env
(
'__'
)
.
file
(
'environment'
,
'/sandbox/config.json'
)
.
file
(
'defaults'
,
'config.json'
);
export
default
config;