Welcome to the Straw Social Project! This README file serves as a guide to help you understand the project structure, dependencies, and how to get started with development.
This project is built using the Spring Framework, a powerful and widely-used framework for building Java applications. It provides comprehensive infrastructure support for developing Java applications rapidly.
To start working on this project, follow these steps:
git clone <repository-url>
Import the project into your favorite IDE (e.g., IntelliJ IDEA, Eclipse).
Use Maven to build the project and resolve dependencies.
mvn clean install
Run the main application class (Application.java) in your IDE.
Once the application is running, access it using the specified URL http://localhost:8080.
In this project, you can use the following Maven commands:
This will create:
mvn clean
: Cleans the project.mvn compile
: Compiles the source code.mvn test
: Runs the tests.mvn package
: Packages the compiled code into a distributable formatmvn install
: Installs the packaged artifact into the local Maven repository.