Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 790 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 790 Bytes

AFC Website

Installation

  1. Ensure you have Node.js and NPM installed. You can check by running:
node --version
npm --version
  1. Clone this repository to your local machine:
git clone https://github.com/CVC-Lab/afc-website.git
  1. Navigate to the project directory and install the required dependencies:
cd afc-website
npm install

Development

To start the development server, run the following command in the project directory:

npm run develop

This will start a local development server at http://localhost:8000/.

Build and Deployment

To build the project for production, run:

npm run build

This command generates a public folder with the optimized website.

To deploy the website to GitHub Pages, run:

npm run deploy