Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.12 KB

README.md

File metadata and controls

50 lines (34 loc) · 1.12 KB

eclubpolimi.it

The E-Club Polimi website's source code. See it in action at eclubpolimi.it. The website is made with React and Next.js.

Getting Started

Follow the steps below to get the website up and running for development.

Prerequisites

  • Node.js 16+
    Get the latest LTS version for your platform here.

Installation

  1. Clone the repo (can also be done with your preferred git tool)
    git clone https://github.com/eclubpolimi/eclubpolimi.it.git
  2. Install required NPM packages
    cd eclubpolimi.it
    npm ci

Usage

From inside the root project folder, you can run the Next development server with

npm run dev

or build the website with

npm run build

and subsequently launch it with

npm run start

Git Development Workflow

We make extensive use of GitHub's Pull Requests. Every contribution to the repository must be made on a separate branch from the master branch, and then PRd to it. After a review phase, the PR will be merged.