Skip to content

OregonStateHackathonClub/website

Repository files navigation

About

This is the official website for BeaverHacks, a yearly hackathon hosted by the Hackathon Club at Oregon State University. Users can find relevant information regarding the hackathon and submit an application. Officers may view applications and compose a resume book.

Requirements

  • Node: Install the latest version of Node
  • Docker: Install the latest version of Docker

Setup

  1. Clone the repository
git clone https://github.com/OregonStateHackathonClub/website.git
  1. Navigate to the project directory
cd website
  1. Download the dependencies
npm install
  1. Copy the .env.example to .env.local
cp .env.example .env.local
  1. Message @81iq on Discord to get the required credentials for the .env.local file

Warning

Do not share these credentials with anyone else. Additionally, you will not be able to run the application without them.


  1. Start a local instance of PostgreSQL using Docker
docker compose up -d
  1. Run the Next.js App
npm run dev