Faculty Research Database - Final Project
ISTE 330 01
Team 11 (Fancy 4)
- Andrew Diana
- Brendan McGeever
- Nicholas Rung
- Brendon Strowe
- Build the database. From a MySQL prompt, run the
scripts/CreateDatabase.sqlscript to build the database and thescripts/TestData.sqlto populate it with test data. - Configure your environment to connect to the database. In the root directory of this project, create a new file called
.env. The contents of the file should look like the following whereusernameandpasswordare replaced with the credentials needed to log into your local instance of your MySQL Server.
DB_HOST=localhost
DB_USERNAME=username
DB_PASSWORD=password
DB_DATABASE=FacultyResearch
- Install the dependent Node.js packages. In a Terminal or Command Prompt window, change the working directory to the root directory of the local copy of this project. Run the command
npm install. - Run the server. Run the command
npm startto start the server. - Run the client. In a web browser, navigate to
http://localhost:3000/.