new setup, added missed configs
This commit is contained in:
37
config.json.template
Normal file
37
config.json.template
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"db": {
|
||||
"Path": "data/db.sqlite3"
|
||||
},
|
||||
"site": {
|
||||
"AllowOrigins": "http://localhost:5173,http://localhost:3000",
|
||||
"WebsiteTitle": "GoMembership",
|
||||
"BaseUrl": "http://localhost:3000"
|
||||
},
|
||||
"auth": {
|
||||
"APIKey": "CHANGE_THIS"
|
||||
},
|
||||
"smtp": {
|
||||
"Host": "smtp.example.com",
|
||||
"User": "user@example.com",
|
||||
"Password": "CHANGE_THIS",
|
||||
"Port": 465
|
||||
},
|
||||
"templates": {
|
||||
"MailPath": "templates/email",
|
||||
"HTMLPath": "templates/html",
|
||||
"StaticPath": "templates/css",
|
||||
"LogoURI": "/static/logo.png"
|
||||
},
|
||||
"recipients": {
|
||||
"ContactForm": "contact@example.com",
|
||||
"UserRegistration": "admin@example.com",
|
||||
"AdminEmail": "admin@example.com"
|
||||
},
|
||||
"security": {
|
||||
"RateLimits": {
|
||||
"Limit": 1,
|
||||
"Burst": 60
|
||||
}
|
||||
},
|
||||
"Environment": "development"
|
||||
}
|
||||
Reference in New Issue
Block a user