This is a simple CRUD Spring Boot Application. Displays your blog/profile links in a single page | ![]() |
Thymeleaf is a modern, flexible, and easy-to-use template engine that is used for building dynamic web applications
Its simple syntax, integration with Spring, and good documentation made it an ideal choice to develop this basic app.
You may visit my blog that provides on overview of thymeleaf: A Full Stack Shortcut
- Verify Docker version and also login to Docker Hub
docker version
docker login
- Pull Image from Docker Hub
docker pull vaibhavisita/myblog:latest
- Run the downloaded Docker Image & Access the Application
docker run --name myblog -p8777:8080 -d vaibhavisita/myblog:latest
- Clone the repository using the following command:
git clone https://github.com/Vaibhavi-Sita/ThymeleafDemo.git
- Navigate to the cloned directory and build the project using the following command:
./mvnw clean install
- Start the application using the following command:
./mvnw spring-boot:run
- Access the application in your web browser at http://localhost:8080.
If you would like to contribute to the project, please follow the steps below:
- Fork the repository
- Create a new branch for your changes
- Commit your changes and push the branch to your fork
- Create a pull request against the master branch of this repository