This is the code repository for the final project made for CIS4301.
As a prerequisite for all steps, you will need to install Node.js
-
Navigate to the
frontendfoldercd frontend -
Install all packages
npm install -
Run the client application
npm start
-
Navigate to the
backendfoldercd backend -
Install all packages
npm install -
Install the Oracle Instant Client
-
Unzip the instant file folder somewhere and make note of the path
-
Create a
.envfile and insert the following code, replacing <> with the appropriate Oracle credentials/path:NODE_ORACLEDB_USERNAME="<username>" NODE_ORACLEDB_PASSWORD="<password>" NODE_ORACLEDB_CONNECTSTRING="//oracle.cise.ufl.edu/orcl" ORACLE_CLIENT_DIR="<path_to_oracle_instant_client>" -
Run the web server and go to http://localhost/5000
node index.js