A fast and lightweight task manager built with Next.js and TypeScript, designed for efficiency and simplicity with SQLite as its backend.
- ⚡ Fast & Scalable – Built with Next.js for seamless performance.
- 🛠 Typed & Maintainable – Written in TypeScript for a better developer experience.
- 🗄 Lightweight Database – Uses SQLite, making it easy to set up and run locally.
- 🐳 Docker Support – Easily containerized and deployable.
Ensure you have Node.js (v16 or later) installed on your system:
git clone https://github.com/achyutem/notesforge.git
cd notesforge
npm install
npm run dev
Open http://localhost:3000 with your browser to see the result.
Ensure you have Docker installed on your system:
git clone https://github.com/achyutem/notesforge.git
cd notesforge
To create a fresh Docker image, run:
docker build --no-cache -t notesforge .
To run the docker image, run:
docker run -p 3000:3000 notesforge