Welcome to Nextnotes, my personal coding playground for mastering Next.js! 🎉
Nextnotes is a project aimed at helping me master Next.js through hands-on practice. This repository serves as my virtual workspace where I can experiment with Next.js concepts and build cool projects.
- Note Creation: Create and store notes in a MySQL database.
- Node.js installed on your machine
- Docker installed (for MySQL)
-
Clone this repository:
git clone https://github.com/rpdjf/nextnotes
-
Change into the project directory
cd nextnotes -
Install npm dependecies
npm i
-
Start the MySQL server with Docker Compose (for test only)
docker-compose -f ./compose-mysql-4test.yaml up -d
-
Start the application
npm start
since the app is still in dev process, you may want to use dev build instead 👌
npm run dev
The server will be running at 127.0.0.1:3000