This project is a web user interface (UI) for the Study Jam Web Application, developed by members of the Google Developer Student Clubs - HCMUTE.
In addition to its production use, this project is made public to serve as a resource for sharing knowledge and skills in web development with club members and other students or developers seeking a reference project on building web application with Next.js.
This project utilizes the following main technologies:
- Before running this project, you need to set up the backend API. You can clone the API repository to your local machine from this link: https://github.com/GDSC-HCMUTE/study-jam-api.
- Ensure that Yarn is installed on your computer.
-
In the root directory of this project, create a
.env.local
file and add the environment variableBASE_BACKEND_URL
with the value set to your local backend API URL. For example:BASE_BACKEND_URL=http://localhost:8080/v1/study-jam
-
Open terminal at the root folder of this project, run the following commands sequentially:
yarn install yarn dev
-
Open your browser and access the application at
http://localhost:3000
.