Settings
Basic
Daily notes will be created under this page
English
Small (default)
Import & Export
Import a zip file containing markdown files to this location, or export all pages from this location.
Export
Sharing
Debugging
Provides information about your Notea instance that can be helpful when trying to fix problems.
Fatal errorInvalid authorisation configuration
Neither the configuration file, the PASSWORD environment variable, nor the DISABLE_PASSWORD environment variable was set.
Potential fixes
RecommendedSet the PASSWORD environment variable
- If using Vercel or Netlify, go to the environment settings. If using an environment file, edit that file.
- Set a variable with PASSWORD as key and your desired password as the variable.
RecommendedInclude an auth section in the configuration file
- Edit the configuration file. Note that this does not work for Vercel nor Netlify.
- Configure the auth section as you desire the authentication to work. Note that as of now it only supports basic authentication.
Not advisedDisable authentication
- Set either the DISABLE_PASSWORD environment variable or set auth.type to none in the configuration file.
Fatal errorStore endpoint was not provided
The store endpoint was not provided to Notea.
Cause
Error: [Notea] STORE_END_POINT is undefined at Object.getEnvRaw (/var/task/.next/server/chunks/300.js:1229:19) at tryElseAddError.name (/var/task/.next/server/chunks/300.js:249:92) at tryElseAddError (/var/task/.next/server/chunks/300.js:48:13) at loadConfigAndListErrors (/var/task/.next/server/chunks/300.js:248:9) at findIssues (/var/task/.next/server/chunks/300.js:435:106) at collectDebugInformation (/var/task/.next/server/chunks/300.js:450:20) at Array.applyMisconfiguration (/var/task/.next/server/chunks/510.js:330:111) at loop (file:///var/task/node_modules/next-connect/dist/index.js:69:47) at next (file:///var/task/node_modules/next-connect/dist/index.js:74:13) at Array.applyUA (/var/task/.next/server/chunks/521.js:1073:5)
Potential fixes
RecommendedSet the STORE_END_POINT environment variable
- If using Vercel or Netlify, go to the environment settings. If using an environment file, edit that file.
- Set a variable with STORE_END_POINT as key and your store's endpoint as the variable. Note that the endpoint must be resolvable by the server Notea runs on.
RecommendedSet store.endpoint in the configuration file
- Edit the configuration file. Note that this does not work for Vercel nor Netlify.
- In the store section, set endpoint to your store's endpoint.