https://github.com/jxiao/cis450-final-project
CIS450/550 Final Project
https://github.com/jxiao/cis450-final-project
Last synced: 3 months ago
JSON representation
CIS450/550 Final Project
- Host: GitHub
- URL: https://github.com/jxiao/cis450-final-project
- Owner: jxiao
- Created: 2022-10-18T17:47:06.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-16T03:25:41.000Z (over 2 years ago)
- Last Synced: 2025-01-12T11:28:38.946Z (5 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 827 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Entertainment Engine
Eduardo Gonzalez, Leah Levin, Sherie Pan, Jeffrey Xiao
Deployed at: https://entertainment-engine.herokuapp.com/
- Note that long queries which take > 30 seconds to return will timeout on Heroku's free tier. To avoid this, please run the local version.
To run locally, run the following commands (this will start the backend server and the frontend client):
```bash
npm run install-all; # this will install the packages for both the backend (root) and the frontend (client)
npm start; # this will start the backend server# ON A SEPARATE TERMINAL WINDOW
cd client; # go to the frontend directory
npm start; # start the frontend server
```**IMPORTANT**: you must have the correct details in the `.env` file in the root directory as well as the `client/.env` file. If you do not have the `.env` files, contact any of us for the details.