Skip to content

How to clone the website

Eugenia Chen edited this page Nov 10, 2020 · 2 revisions

This is a Next.js project bootstrapped with create-next-app.

Clone the repository

First, clone the project.

git clone https://github.com/uiuc-wece/wece-next-app.git

Getting Started - Client

Inside the repository, go into the client folder.

cd client

Then, install packages. Run the following:

npm install

To run the development frontend:

npm run dev

Open http://localhost:3000 with your browser to see the result. This renders the frontend of the site.

Getting Started - Server

Inside the repository, go into the api folder.

cd api

Then, install packages. Run the following:

npm install

To run the development server:

npm run start

The api will be served out of http://localhost:3003.