Skip to content

Installation and Configuration (Testing)

Akshat edited this page Apr 22, 2018 · 6 revisions

Setup Instructions

  • Clone this project repository in a local directory.
  • Open Intellij IDEA (recommended) or STS.

  • Click on import project and select the moovi folder.

  • Import this as a Maven Project. Click next.

  • Leave the default settings as it is. Click next.

  • Click finish and the project now opens up, loading the dependencies.


Schema Creation and Running

  • Open MySQL Workbench and on your localhost, create the schema named moovi.
  • In the project, navigate to moovi>src>resources>application.properties and enter your localhost username and password to access the schema you created in the step before.

  • Run the MooviApplication file. This will populate the moovi schema in the localhost with all the required tables.
  • Go to MySQL Workbench and refresh the schema. Create a new query:

INSERT INTO `moovi`.`user` (dtype, dob, email, first_name, last_name, password, username) VALUES ("Admin","22-04-2018","[email protected]","admin","admin","admin","admin");

  • Open your browser and enter URL as:

https://localhost:8080/

Clone this wiki locally