LEARNSCAPE.-.SHOWCASE.mp4
Learnscape is a dynamic web application designed to revolutionize school management by providing seamless user and admin login systems. Built with Spring Boot and Thymeleaf, Learnscape offers a range of features to enhance the educational experience for young students. Learnscape is a comprehensive school management system that includes functionalities for user registration, user login, admin login, and various sections like Home, About Us, Contact, Courses, and Login. This project is designed to help schools manage their operations more efficiently and provide a better user experience for students and administrators.
First, clone the repository to your local machine using the following command:
git clone https://github.com/Debarshi-Gupta/learnscape.git
cd Learnscape
Ensure you have Maven installed. You can download Maven from the official website and follow the installation instructions for your operating system. To verify Maven installation, run:
mvn -version
Navigate to the root directory of the project and run the following command to build the project:
mvn clean install
Open your MySQL client and create a new database named learnscape:
CREATE DATABASE learnscape;
Open the src/main/resources/application.properties file and update the database credentials to match your MySQL configuration:
spring.datasource.url=jdbc:mysql://localhost:3306/learnscape
spring.datasource.username=your_username
spring.datasource.password=your_password
Start the Spring Boot application by running:
mvn spring-boot:run
Open your web browser and navigate to:
http://localhost:8090