/ * T h e s e a r e c o n f i g u r a t i o n o p t i o n s w h i c h c a n b e p u b l i c .
* WARNING : Do not put any sensitive keys in these files . They * will * be
* seen by the end user if you do . Only things an unauthenticated user
* is allowed to see . Anything else should go in lib / config . js and
* * never * import that file in any client / * files .
* /
export const fake _payments = true ;
export const webtorrent = {
use _dht : false ,
private : true
}
export const product = {
price : 20 ,
currency : 'USD' ,
description : 'Super Product' ,
id : 1
}
export const btcpay _url = 'https://pay.yoursite.com/modal/btcpay.js' ;
// brought over from ljsthw but need to adapt to the new product setting
export const product _id = product . id ;
export const base _host = 'http://127.0.0.1:5001' ;
export const support _email = "help@yourcompany.com" ;
export const paypal _public = {
disabled : true ,
client _id : "YOUR PAYPAL PUBLIC KEY" ,
}
export const stripe _public = {
disabled : false ,
client _id : "pk_MhuNltOn2Gq5VBZ9lMNxv4CB3wFOa"
}
export const darkmode _default = "light" ;
export const register _enabled = true ;
export const log _levels = [ "debug" , "warn" , "info" , "error" , "table" , "assert" ] ;
export const twitter _user = "@lzsthw" ;
export const site _name = "localhost:5001" ;