mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
feat: refactor the entire learnhouse project
This commit is contained in:
parent
f556e41dda
commit
4c215e91d5
247 changed files with 7716 additions and 1013 deletions
28
apps/api/config/config.yaml
Normal file
28
apps/api/config/config.yaml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
site_name: LearnHouse
|
||||
site_description: LearnHouse is an open-source platform tailored for learning experiences.
|
||||
contact_email: hi@learnhouse.app
|
||||
|
||||
general:
|
||||
development_mode: true
|
||||
install_mode: true
|
||||
|
||||
security:
|
||||
auth_jwt_secret_key: secret
|
||||
|
||||
hosting_config:
|
||||
domain: learnhouse.app
|
||||
ssl: true
|
||||
allowed_origins:
|
||||
- http://localhost:3000
|
||||
- http://localhost:3001
|
||||
cookies_config:
|
||||
domain: ".localhost"
|
||||
allowed_regexp: '\b((?:https?://)[^\s/$.?#].[^\s]*)\b'
|
||||
content_delivery:
|
||||
type: "filesystem" # "filesystem" or "s3api"
|
||||
s3api:
|
||||
bucket_name: ""
|
||||
endpoint_url: ""
|
||||
|
||||
database_config:
|
||||
mongodb_connection_string: mongodb://learnhouse:learnhouse@mongo:27017/
|
||||
Loading…
Add table
Add a link
Reference in a new issue