You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An online eBook Portal build on J2EE Platform using Java Servlets and JSP.
Technolgies Used:
J2EE: Java Servlets & JSP
MySQL Database
Bootstrap4 as UI Framework
Building & Running the Project(Linux):
Clone the project using git clone https://github.com/jaykay12/KitabGhar.git
Install Tomcat7 on your workspace:
sudo apt-get install tomcat7 tomcat7-admin tomcat7-docs tomcat7-examples
Hit 127.0.0.1:8080/ from your web browser, if Tomcat7 landing page loads, you are good to go.
Open repository using cd KitabGhar
Open MySQL in your workspace using mysql -u [username] -p & then create a DB for KitabGhar using CREATE DATABASE kitabghar
Populate the DB using MySQL dump file using mysql -u [username] -p kitabghar < KitabGhar.sql
Create a soft link of the web-app to the tomcat7 root folder using cd /var/lib/tomcat7/webapps/ and sudo ln -s <SYSTEM_PATH_GITHUB_REPO>/KitabGhar/KitabGhar KitabGhar
Start Tomcat7 server using sudo /etc/init.d/tomcat7 start
Hit 127.0.0.1:8080/KitabGhar from your web browser.
Explore the project, find bugs, raise issues & make pull requests. Happy Hacking 😄
About
An online eBook Portal build on Java Servlets and JSP.