Skip to content

Latest commit

 

History

History
104 lines (77 loc) · 2.89 KB

README.md

File metadata and controls

104 lines (77 loc) · 2.89 KB

Amalthea2021

Amalthea2021 is a Node.js-based website designed to provide information about events, webinars, sponsors, and more. This site was created for Amalthea, the annual technical summit of IIT Gandhinagar. This repository contains the source code and configuration files necessary to run the website locally.

Table of Contents

Technologies

  • Node.js
  • Express.js
  • EJS (Embedded JavaScript Templates)
  • TailwindCSS

Installation

Prerequisites

  • Node.js (>= 14.x)
  • npm (Node Package Manager)

Steps

  1. Clone the repository:

    git clone https://github.com/yourusername/Amalthea2021.git
    cd Amalthea2021
    
  2. Install dependencies:

    npm install
  3. Start the server:

    npm start

Screenshots

Home Page

image image image

Events Page

image image

Webinars Page

image image

Sponsors Page

image

Project Structure

Amalthea2021/
├── node_modules/
├── public/
│   ├── css/
│   ├── images/
│   ├── js/
│   └── video/
├── seeds/
│   ├── contact.js
│   ├── evntdata.js
│   ├── instacodes.js
│   ├── sponsors.js
│   └── webinars.js
├── views/
│   ├── layouts/
│   ├── partials/
│   ├── CAform.ejs
│   ├── CAhome.ejs
│   ├── evntRegis.ejs
│   ├── home.ejs
│   ├── liveevents.ejs
│   ├── sponsors.ejs
│   ├── team.ejs
│   ├── techexpo.ejs
│   └── Webinar.ejs
├── .env
├── .gitignore
├── app.js
├── package-lock.json
├── package.json
├── Procfile
└── README.md