21asphyxia / GatherGrid

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project Startup Guide

GatherGrid

Presentation

Table of Contents


Prerequisites

Before you get started, make sure you have the following prerequisites installed on your system:

Getting Started

Cloning the Repository

  1. Clone this repository to your local machine using Git:

    git clone https://github.com/21asphyxia/GatherGrid.git

Building the Project

  1. Navigate to the project's root directory:
cd GatherGrid/
  1. Build the project using Maven:
mvn clean install

This will compile the source code, run tests, and package the application into a WAR file.

Configuring Tomcat

  1. Download and install Apache Tomcat 10 on your system if you haven't already.

Running the Application

  1. Copy the generated WAR file (usually located in the target directory) to the Tomcat webapps directory:
cp target/your-project.war <Tomcat Installation Directory>/webapps/
  1. Start Tomcat:
    <Tomcat Installation Directory>/bin/startup.sh  # on Unix-like systems
    <Tomcat Installation Directory>\bin\startup.bat  # on Windows
  2. Access your application in a web browser:
http://localhost:8080/your-project

About


Languages

Language:Java 100.0%