This is a Next.js project bootstrapped with create-next-app.
Follow these steps to set up and run this project locally:
To keep dependencies isolated, it's recommended to use a virtual environment.
python3 -m venv myenv
source myenv/bin/activate # For macOS/Linux
# .\myenv\Scripts\activate # For Windows
First, clone this repository to your local machine:
git clone https://github.com/Eunbi-Cho/naver_eval.git
cd naver_eval
Make sure you have Node.js installed (version 16 or later is recommended). Install the required packages using one of the following commands:
npm install next react react-dom
If a requirements.txt
file is present, install Python dependencies with:
pip install -r requirements.txt
This will download and set up all the dependencies listed in the respective files.
Run the development server with one of these commands:
npm run dev
Once the server starts, open your browser and visit:
Here, you can see the project in action. Any changes you make to the code will automatically reflect on the page.
If the project doesn't start due to missing packages, try deleting the node_modules
folder and package-lock.json
file, then reinstall dependencies:
rm -rf node_modules package-lock.json
npm install