mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-07-19 05:09:41 +02:00
* implement configuration through YAML * remove rcparser * use password from appConfig * update docker configs * fix dockerignore * implement mongodb driver * update eslint packages * fix bugs * refactor code for grouping by parent * fix yet another bug * use unique symbol to the EntityId type * fix more bugs * implement db converter * fix bug with parent selector * fix eslint * db-converter refactoring * create cli program for db-converter * add readme and gitignore * update development docs * update development docs and default config * add docs about converter * add src/test to docker ignore * move database code from utils * improve docs * eslint fix * add more docs * fix docs * remove env_file from docker-compose * implement duplicate detection in db-converter * use published version of the config-loader * fix bug * Update DEVELOPMENT.md Co-authored-by: Ilya Maroz <37909603+ilyamore88@users.noreply.github.com> * fix bugs * fix next/prev buttons * fix more bugs * fix sorting Co-authored-by: Ilya Maroz <37909603+ilyamore88@users.noreply.github.com>
31 lines
600 B
YAML
31 lines
600 B
YAML
port: 3000
|
|
host: "localhost"
|
|
uploads: "./uploads"
|
|
password: secretpassword
|
|
frontend:
|
|
title: "CodeX Docs"
|
|
description: "A block-styled editor with clean JSON output"
|
|
startPage: ""
|
|
misprintsChatId: "12344564"
|
|
yandexMetrikaId: ""
|
|
carbon:
|
|
serve: ""
|
|
placement: ""
|
|
menu:
|
|
- "Guides"
|
|
- title: "CodeX"
|
|
uri: "https://codex.so"
|
|
|
|
auth:
|
|
secret: supersecret
|
|
|
|
hawk:
|
|
# frontendToken: "123"
|
|
# backendToken: "123"
|
|
|
|
database:
|
|
driver: local # you can change database driver here. 'mongodb' or 'local'
|
|
local:
|
|
path: ./db
|
|
# mongodb:
|
|
# uri: mongodb://localhost:27017/docs
|