A web application that shows stock information in AR.
This application uses the Google Vision API to perform text detection. Please visit Google Vision API doc to set up the API. Create a service account key and then export the key into the virtual environment.
After cloning the repository, go the RobinhoodAR directory, and run these commands on your Command Line terminal
- On macOS:
python3 -m venv venv
to create a virtual environment.
On Windows: py -m venv venv
- On macOS:
source venv/bin/activate
to activate virtual environment.
On Windows: .\env\Scripts\activate
-
pip3 install -r requirements.txt
to install all dependencies -
python3 app.py
to run the server.
Then, search for localhost:5000 on your browser to see the web app.
Make sure to activate virtual environment before making any development. Once completed with development,
run pip3 freeze > requirements.txt
to update the file with new dependencies.
If there are any issues, please create an issue on this repository. Our team will look into it.