Simple note taking app using Next.js and Prisma.
Supporting Markdown and LaTeX.
- Markdown Support
- LaTeX Support
- Public Share Link
- ...
First, install the dependencies with npm install
.
Rename .example.env
to .env
and put in your email account and server address and your mysql connection string.
For example you can create a free mysql database on Railway.
Then, run the development server:
npm run dev
# or
yarn dev
This project is using Prisma as ORM. To generate the client run:
npx prisma generate
and to migrate you can use
prisma migrate dev --name "Your message"
To run prisma studio: npx prisma studio
Open http://localhost:3000 with your browser to see the result.