Noteblocks is a self-hosted notes app built with Next.js.
- Notes are stored in a local SQLite database at
notes/notes.db(created automatically on first run). - The app initializes the schema on startup and seeds a few starter notes when the database is first created.
- Note metadata and settings are also stored in SQLite (
notes,tags,note_tags, andconfigtables). - To back up your data, copy the
notes/directory.
- Install dependencies:
npm install- Start the development server:
npm run dev- Open http://localhost:3000 in your browser.
- Build the app:
npm run build- Start the production server:
npm run start- Open http://localhost:3000 in your browser.

