The Gencon Calendar Application is a web application built with Next.js framework that aims to assist users in choosing events for their GenCon gaming convention event registration. The applications provides features to browse and filter events based on a number of paramaters including conflicting times.
This documentation will guide you through the installation process, explain the paplications features and functionalities, and provide an overview of the code structure for further development or customization.
- Installation
- Prerequisites
- Installation Steps
Before installing the GenCon Calendar App, ensure you have the following installed on your machine:
- Node.js (version 14 or higher)
- npm or yarn package manager
- Clone the repository.
- Navigate to the project directory and then the
/frontend
folder. - Install the project dependencies by running:
npm install
// or
yarn install
// or
pnpm install
- Once the installation is complete, start the development server:
npm run dev
// or
yarn dev
// or
pnpm dev
- Open your web browser and navigate to
http://localhost:3000
to access the GenCon Calendar App.