Powered by NovaDocs
Welcome to NovaDocsStart with Installation → Install with Docker, or switch language to Polish (PL).

App config file

Admin4 min readUpdated Aug 7, 2026

App config file

Most product settings live in novadocs.config.ts at the root of the project.

You can also change many of them later in Admin → Settings (saved in the database).

Brand

  • name — product name shown in the UI
  • tagline — short subtitle
  • logo / favicon — paths under /public
  • url — usually the same as NEXT_PUBLIC_APP_URL

Feature flags

Turn features on or off, for example:

  • registration — allow new users to sign up
  • webhooks — enable webhook settings
  • githubSync — GitHub import/sync
  • api — REST API
  • bookmarks / feedback / readingProgress — reader extras
  • cookieBanner — cookie notice
  • whiteLabel — hide NovaDocs chrome when activated

Limits

  • max number of projects
  • max upload size
  • how many article revisions to keep

After you edit the file

Restart the app (or redeploy) so changes load.

For day-to-day tweaks (site name, accent color, and similar), prefer Admin → Settings so you do not need a redeploy.

Was this helpful?