- J2EE: Java Servlets & JSP
- MySQL Database
- Bootstrap4 as UI Framework
- 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 usingCREATE 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/
andsudo 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 😄