Skip to content

Latest commit

 

History

History
50 lines (30 loc) · 1.32 KB

README.md

File metadata and controls

50 lines (30 loc) · 1.32 KB

AURA (Analyzing User Reviews for Better Design of Mobile Apps)

This project is the senior design final project of

  • Henry Bish
  • Steven Hagedorn
  • Daniel Stoy
  • Jakob Wardega

TODO: add more of a description

Requirements

  • Node.js (tested with v16.13.1 on Windows 10)
  • Python 3.8.10 (tested with 3.8.10, **does not work on 3.8.0)

To Install

Clone the repository

git clone https://github.com/JakeTM9/AURA.git

Navigate to the root directory

cd AURA

To Run

In Terminal #1 (from root directory):

cd server
python -m venv venv
./venv/scripts/activate (or .\venv\scripts\activate)
pip install -r requirements.txt
flask run

Open up a new terminal In Terminal #2 (from root directory)

cd client
npm install
npm run start

Files

All front end files can be found in the client directory. The client makes asynchronous requests to the server inside of react components like the Create page

All machine learning scripts and scripts that do data manipulation can be found in the server directory. The most important file in the server directory is the Server File