Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

README.md

File metadata and controls

33 lines (24 loc) · 1.35 KB

College Website Project

This is a Node.js Express project

Project Structure

The project includes the following folders and files:

  • public: This folder contains static files such as CSS, JavaScript, and images.
    • css: This folder contains CSS files.
    • Javascript: This folder contains JavaScript files.
    • Images: This folder contains all the image files.
  • views: This folder contains all the HTML pages for the website, divided into subfolders for each section. It also includes a partials folder which has footer, header, and head files in EJS format.
  • app.js: This is the server file which has the routes set up and all the necessary configurations.
  • package.json: This file contains the project's metadata and dependencies.

Getting Started

  1. Clone this repository to your local machine.
  2. Install Node.js and NPM on your machine.
  3. Install the project dependencies by running npm install command in the root directory of the project.
  4. Run the project using the command node app.js. This will start the server and the website can be accessed at http://localhost:3000.